mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-03 01:50:11 +00:00

This reverts commit 90102acdbb23c09574d27df8bd1f568d34e0cfd3. Now that we are ready to make a new release we can revert the revert and hopefuly never have to solve a mess like this again to keep master synchronized with the latest release
31 lines
702 B
YAML
31 lines
702 B
YAML
# Config file for automatic testing at travis-ci.org
|
|
|
|
language: python
|
|
|
|
matrix:
|
|
include:
|
|
- python: 3.6
|
|
env: TOX_ENV=py36
|
|
- python: 3.5
|
|
env: TOX_ENV=py35
|
|
- python: 3.4
|
|
env: TOX_ENV=py34
|
|
- python: 2.7
|
|
env: TOX_ENV=py27
|
|
- python: pypy3
|
|
env: TOX_ENV=pypy3
|
|
- python: 3.6
|
|
env: TOX_ENV=flake8
|
|
|
|
# Use tox to run tests on Travis-CI to keep one unified method of running tests in any environment
|
|
install:
|
|
- pip install coverage coveralls tox
|
|
|
|
# Command to run tests, e.g. python setup.py test
|
|
script: tox -e $TOX_ENV
|
|
|
|
# Use after_success to get a single coveralls report
|
|
after_success:
|
|
- coverage run --source=pipreqs setup.py test
|
|
- coveralls
|