We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146f82d commit 2367e22Copy full SHA for 2367e22
1 file changed
.travis.yml
@@ -1,23 +1,24 @@
1
+dist: xenial # required for Python >= 3.7
2
language: python
3
env:
4
- REQUIREMENTS=true
5
- REQUIREMENTS=false
6
python:
7
- "2.7"
- - "3.3"
8
- "3.4"
9
- "3.5"
10
- "3.6"
11
- - "pypy-5.4"
+ - "3.7"
12
+ # PyPy versions
13
+ - "pypy3.5"
14
# command to install dependencies
15
install:
16
- if [[ $REQUIREMENTS == true ]] ; then pip install -r requirements.txt ; fi
- - pip install coveralls pytest pytest-cov coverage codecov
17
+ - pip install -U coveralls pytest pytest-cov coverage codecov
18
- pip install -e .
19
- if [[ ! $TRAVIS_PYTHON_VERSION == 'pypy-5.4' ]] ; then pip install regex; fi
20
# command to run tests
21
script: py.test
-sudo: false
22
after_success:
23
- coveralls
24
- codecov
0 commit comments