pipreqs/.travis.yml
Jon Banafato 3b8419ca92 Declare support for Python 3.6
All tests pass under Python 3.6, so declare official support for it.
Closes #68.
2017-10-20 14:35:06 -04:00

22 lines
459 B
YAML

# Config file for automatic testing at travis-ci.org
language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- "pip install -r requirements.txt"
- "pip install coverage"
- "pip install coveralls"
# command to run tests, e.g. python setup.py test
script: coverage run --source=pipreqs setup.py test
after_success:
coveralls