mirror of
https://github.com/bndr/pipreqs.git
synced 2025-06-10 21:37:10 +00:00

By reverting all commits done since release v0.4.10 we will have the master branch synchronized with the latest release available in pipy. All commits done since the latest release will be moved to another branch called `next` where we will centralize development. Once we are ready for a new release of pipreqs, the `next` branch will be merged back on to master and a new release will be made. This change will make development more organized and will avoid new issues from users complaining about features only present in master not working on their installation of pipreqs. I would also like to thank @pedroteosousa for his help on reverting and squashing all commits
31 lines
701 B
YAML
31 lines
701 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: pypy
|
|
env: TOX_ENV=pypy
|
|
- 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
|