We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c87341b commit e47bd35Copy full SHA for e47bd35
.travis.yml
@@ -3,8 +3,8 @@ install:
3
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then pip install -r requirements.txt; fi
4
script:
5
- python -m unittest test_asserts
6
- - if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then mypy asserts test_asserts.py; fi
7
- - if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then python -m doctest asserts/__init__.py; fi
+ - if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1,2` \> 3.4; then mypy asserts test_asserts.py; fi
+ - if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1,2` \> 3.4; then python -m doctest asserts/__init__.py; fi
8
jobs:
9
include:
10
- stage: test
0 commit comments