2015-07-08 17:30:24 +00:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- 3.4
|
2015-10-29 14:05:30 +00:00
|
|
|
- 3.5
|
2016-10-09 12:56:14 +00:00
|
|
|
- nightly
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
install:
|
2015-10-29 14:05:30 +00:00
|
|
|
- pip install --upgrade pip
|
|
|
|
- pip install -r requirements-dev.txt
|
2016-09-27 12:32:53 +00:00
|
|
|
- pip install codecov
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
script:
|
2016-08-30 17:38:59 +00:00
|
|
|
- flake8 aiohttp_security tests
|
2015-07-08 17:30:24 +00:00
|
|
|
- coverage run --source=aiohttp_security setup.py test
|
|
|
|
|
|
|
|
after_success:
|
2016-09-27 12:32:53 +00:00
|
|
|
- codecov
|
2015-07-08 17:30:24 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
matrix:
|
2016-09-27 12:32:53 +00:00
|
|
|
- PYTHONASYNCIODEBUG=x
|
|
|
|
- PYTHONASYNCIODEBUG=
|