Skip to content

Commit 55e6d2d

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

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed

.travis.yml

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

55
python:
6+
- "3.4"
67
- "3.5"
8+
- "3.6"
9+
- "3.7"
710

811
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
12+
- TOXENV=py34-django30-normal,py35-django30-normal,py36-django30-normal,py37-django30-normal
13+
- TOXENV=py34-django30-custom,py35-django30-custom,py36-django30-custom,py37-django30-custom
1514

1615
cache:
1716
directories:

tox.ini

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
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
87
py33: python3.3
98
py34: python3.4
109
py35: python3.5
10+
py36: python3.6
11+
py37: python3.7
1112
deps =
1213
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
14+
django30: Django>=3.0,<3.1
1715
setenv =
1816
custom: SWAPPED=1
1917

2018
[testenv:docs]
21-
basepython = python2.7
19+
basepython = python3.4
2220
deps = Sphinx==1.1.3
2321
commands =
2422
{envbindir}/sphinx-build -a -n -b html -d docs/_build/doctrees docs docs/_build/html

0 commit comments

Comments
 (0)