Initial commit

This commit is contained in:
Andrew Svetlov
2015-07-08 20:30:24 +03:00
commit 7c702e5df9
26 changed files with 1802 additions and 0 deletions

25
.travis.yml Normal file
View 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