Skip to content

Commit 14f57c0

Browse files
authored
Merge pull request #68 from sebix/fix-travis
tests: update travis config Thanks, @sebix !
2 parents 146f82d + bb7b71b commit 14f57c0

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.travis.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
1+
dist: xenial # required for Python >= 3.7
12
language: python
23
env:
34
- REQUIREMENTS=true
45
- REQUIREMENTS=false
56
python:
67
- "2.7"
7-
- "3.3"
88
- "3.4"
99
- "3.5"
1010
- "3.6"
11-
- "pypy-5.4"
11+
- "3.7"
12+
# PyPy versions
13+
- "pypy3.5"
1214
# command to install dependencies
1315
install:
1416
- if [[ $REQUIREMENTS == true ]] ; then pip install -r requirements.txt ; fi
15-
- pip install coveralls pytest pytest-cov coverage codecov
17+
- pip install -U coveralls pytest pytest-cov coverage codecov
1618
- pip install -e .
17-
- if [[ ! $TRAVIS_PYTHON_VERSION == 'pypy-5.4' ]] ; then pip install regex; fi
19+
- if [[ ! $TRAVIS_PYTHON_VERSION == 'pypy3.5' ]] ; then pip install regex; fi
1820
# command to run tests
1921
script: py.test
20-
sudo: false
2122
after_success:
2223
- coveralls
2324
- codecov

0 commit comments

Comments
 (0)