aiohttp-security/.travis.yml

22 lines
331 B
YAML
Raw Normal View History

2015-07-08 17:30:24 +00:00
language: python
python:
- 3.4
2015-10-29 14:05:30 +00:00
- 3.5
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
- pip install coveralls
2015-07-08 17:30:24 +00:00
script:
- flake8 aiohttp_security tests
2015-07-08 17:30:24 +00:00
- coverage run --source=aiohttp_security setup.py test
after_success:
- coveralls
env:
matrix:
- PYTHONASYNCIODEBUG=1
- PYTHONASYNCIODEBUG=0