mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
Add gaiohttp tests for travis build
This commit is contained in:
parent
e9518383da
commit
4ede68c6e4
@ -8,6 +8,7 @@ python:
|
|||||||
install:
|
install:
|
||||||
- "pip install -r requirements_dev.txt"
|
- "pip install -r requirements_dev.txt"
|
||||||
- "python setup.py install"
|
- "python setup.py install"
|
||||||
|
- python check_py3k.py && pip install aiohttp || true
|
||||||
script: py.test -x tests/
|
script: py.test -x tests/
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
|||||||
6
check_py3k.py
Normal file
6
check_py3k.py
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import sys
|
||||||
|
|
||||||
|
if sys.version_info[0] < 3:
|
||||||
|
sys.exit(1)
|
||||||
|
else:
|
||||||
|
sys.exit(0)
|
||||||
Loading…
x
Reference in New Issue
Block a user