Add gaiohttp tests for travis build

This commit is contained in:
Andrew Svetlov 2014-06-09 19:41:58 +03:00
parent e9518383da
commit 4ede68c6e4
2 changed files with 7 additions and 0 deletions

View File

@ -8,6 +8,7 @@ python:
install:
- "pip install -r requirements_dev.txt"
- "python setup.py install"
- python check_py3k.py && pip install aiohttp || true
script: py.test -x tests/
branches:
only:

6
check_py3k.py Normal file
View File

@ -0,0 +1,6 @@
import sys
if sys.version_info[0] < 3:
sys.exit(1)
else:
sys.exit(0)