-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make coveralls conditional on Travis
Update minimum pysam version.
- Loading branch information
1 parent
ea64330
commit 5841a58
Showing
2 changed files
with
12 additions
and
9 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,16 +1,19 @@ | ||
language: python | ||
python: | ||
# - "2.6" # Won't support until given reason to. See https://github.com/PeteHaitch/methtuple/issues/75. | ||
# - "2.6" # Won't support until given reason to. See | ||
# https://github.com/PeteHaitch/methtuple/issues/75. | ||
- "2.7" | ||
- "3.2" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
|
||
install: | ||
- python setup.py install | ||
- pip install coveralls | ||
- python setup.py install | ||
- pip install coveralls | ||
script: | ||
- python setup.py test | ||
- coverage run --source=methtuple setup.py test | ||
- python setup.py test | ||
- coverage run --source=methtuple setup.py test | ||
after_success: | ||
- coveralls | ||
# The coveralls Python module does not support Python 3.2. | ||
- if [[ $TRAVIS_PYTHON_VERSION != 3.2 ]]; then; coveralls; fi |
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