Skip to content

Commit 2367e22

Browse files
committed
tests: update travis config
fix build: pytest needs to be updated remove 3.3, it is EOL add 3.7
1 parent 146f82d commit 2367e22

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.travis.yml

Lines changed: 5 additions & 4 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 .
1719
- if [[ ! $TRAVIS_PYTHON_VERSION == 'pypy-5.4' ]] ; 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)