-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update Makefile, travis and tox configs
- Loading branch information
Showing
3 changed files
with
62 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
sudo: false | ||
language: python | ||
python: | ||
- "2.7" | ||
|
||
matrix: | ||
include: | ||
- python: 3.5 | ||
env: | ||
- TOX_ENV=py35 | ||
- python: 2.7 | ||
env: TOXENV=flake8 | ||
- python: 3.6 | ||
env: TOXENV=py3flake8 | ||
- python: 2.7 | ||
env: TOXENV=py27 | ||
- python: 3.4 | ||
env: | ||
- TOX_ENV=py34 | ||
env: | ||
- TOX_ENV=flake8 | ||
- TOX_ENV=py27 | ||
env: TOXENV=py34 | ||
- python: 3.5 | ||
env: TOXENV=py35 | ||
- python: 3.6 | ||
env: TOXENV=py36 | ||
- python: pypy | ||
env: TOXENV=pypy | ||
# This should be tested. Problem is, Travis are using Python 3.2 for pypy3 which is no longer supported by pip | ||
# - python: pypy3 | ||
# env: TOXENV=pypy3 | ||
|
||
before_install: | ||
- pip install codecov | ||
install: | ||
- pip install tox | ||
- pip install codecov | ||
- pip install tox | ||
script: | ||
- tox -e $TOX_ENV | ||
- tox | ||
after_success: | ||
- codecov | ||
- codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters