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.
2 parents 9aa3eb6 + 85940b7 commit 02949b1Copy full SHA for 02949b1
.travis.yml
@@ -6,6 +6,8 @@ install:
6
- pip install -U tox coveralls
7
8
script:
9
+ - pipenv install --dev
10
+ - pipenv run pip freeze > requirements-tests.txt
11
- coverage erase
12
- tox
13
after_success:
tox.ini
@@ -16,6 +16,10 @@ whitelist_externals = /bin/bash
16
17
[testenv:py36]
18
basepython = python3.6
19
-setenv=
20
- LC_ALL=en_GB.UTF-8
21
- LANG=en_GB.UTF-8
+deps = -rrequirements-tests.txt
+[testenv:py35]
+basepython = python3.5
22
23
+[testenv:py27]
24
+basepython = python2.7
25
0 commit comments