Skip to content

Commit a115fde

Browse files
committed
[travis] Install everything but mypy from requirements on Py 2.7
1 parent 364338e commit a115fde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ python:
55
- "3.5"
66
- "3.6"
77
install:
8-
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then pip install -r requirements.txt; else pip install asserts==0.8.0; fi
8+
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then pip install -r requirements.txt; else pip install `grep -v mypy requirements.txt`; fi
99
script:
1010
- python -m unittest discover -t . -s test_htmlgen -p "*.py"
1111
- if test `python --version 2>&1 | cut -d " " -f 2 | cut -d "." -f 1` = 3; then mypy htmlgen test_htmlgen; fi

0 commit comments

Comments
 (0)