Skip to content

Commit c55683c

Browse files
author
Julio Rama
committed
Fixed test suite
1 parent 857f8b4 commit c55683c

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

.travis.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,11 @@ sudo: false
33
language: python
44

55
python:
6-
- "3.5"
6+
- "3.7"
77

88
env:
9-
- TOXENV=py27-django18-normal,py33-django18-normal
10-
- TOXENV=py27-django18-custom,py33-django18-custom
11-
- TOXENV=py27-django19-normal,py34-django19-normal
12-
- TOXENV=py27-django19-custom,py34-django19-custom
13-
- TOXENV=py27-django110-normal,py34-django110-normal,py35-django110-normal
14-
- TOXENV=py27-django110-custom,py34-django110-custom,py35-django110-custom
9+
- TOXENV=py37-django30-normal
10+
- TOXENV=py37-django30-custom
1511

1612
cache:
1713
directories:

tox.ini

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11
[tox]
2-
envlist = py{27,33}-django{18}-{normal,custom},py{27,34,35}-django{19,110}-{normal,custom},docs
2+
envlist = py{34,35, 36, 37}-django{30}-{normal,custom},docs
33

44
[testenv]
55
commands = coverage run runtests.py
66
basepython =
7-
py27: python2.7
8-
py33: python3.3
9-
py34: python3.4
107
py35: python3.5
8+
py36: python3.6
9+
py37: python3.7
1110
deps =
1211
coverage>=4.2,<4.3
13-
django18: Django>=1.8,<1.9
14-
django19: Django>=1.9,<1.10
15-
django110: Django>=1.10,<1.11
16-
py27: mock>=1.0,<2.0
12+
django30: Django>=3.0,<3.1
1713
setenv =
1814
custom: SWAPPED=1
1915

2016
[testenv:docs]
21-
basepython = python2.7
17+
basepython = python3.4
2218
deps = Sphinx==1.1.3
2319
commands =
2420
{envbindir}/sphinx-build -a -n -b html -d docs/_build/doctrees docs docs/_build/html

0 commit comments

Comments
 (0)