Initial commit
This commit is contained in:
25
.travis.yml
Normal file
25
.travis.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
language: python
|
||||
python:
|
||||
- 3.3
|
||||
- 3.4
|
||||
|
||||
install:
|
||||
- pip install --upgrade setuptools
|
||||
- pip install pyflakes
|
||||
- pip install pep8
|
||||
- pip install coveralls --use-mirrors
|
||||
- pip install aiohttp
|
||||
- python setup.py develop
|
||||
|
||||
script:
|
||||
- pyflakes aiohttp_security tests
|
||||
- pep8 aiohttp_security tests
|
||||
- coverage run --source=aiohttp_security setup.py test
|
||||
|
||||
after_success:
|
||||
- coveralls
|
||||
|
||||
env:
|
||||
matrix:
|
||||
- PYTHONASYNCIODEBUG=1
|
||||
- PYTHONASYNCIODEBUG=0
|
||||
Reference in New Issue
Block a user