Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit ad3379a

Browse files
committed
Update tox-travis with newer django versions
1 parent 45941bf commit ad3379a

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ cache:
1010

1111

1212
jobs:
13+
fast_finish: true
14+
# allow_failures:
15+
# - python: 3.5
16+
# env: TOXENV=py35-django-dev-fix
17+
1318
include:
1419
- stage: core
1520
python: 2.7
@@ -47,6 +52,7 @@ jobs:
4752
python: 2.7
4853
env: TOXENV=py27-django-110
4954

55+
5056
- stage: contrib
5157
python: 3.3
5258
env: TOXENV=py33-django-17
@@ -76,6 +82,12 @@ jobs:
7682
- stage: contrib
7783
python: 3.5
7884
env: TOXENV=py35-django-110
85+
- stage: contrib
86+
python: 3.5
87+
env: TOXENV=py35-django-111-fix
88+
# - stage: contrib
89+
# python: 3.5
90+
# env: TOXENV=py35-django-dev-fix
7991

8092
- stage: contrib
8193
python: 2.7

tox.ini

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,22 @@
55

66
[tox]
77
envlist =
8+
# core
9+
py{27,33,34,35}
10+
pypy
11+
flake8
12+
# contrib
13+
{py35,py36}-django-dev-fix
14+
{py27,py35}-django-111-fix
815
{py27,py34,py35}-django-{18,19,110}
916
{py27,py33,py34,py35}-django-18
1017
{py27,py33,py34}-django-17
1118
py27-django-16
19+
py35-django-dev
1220
{py27,py35}-flask-{10,11}
1321
py35-flask-12
1422
py27-celery-{3,4}
15-
py{27,33,34,35}
16-
pypy
17-
flake8
23+
1824

1925
[testenv]
2026
deps =
@@ -27,12 +33,14 @@ deps =
2733
django-18: Django>=1.8,<1.9
2834
django-19: Django>=1.9,<1.10
2935
django-110: Django>=1.10,<1.11
30-
# django-111: Django>=1.11,<1.12 TODO: update pytest_django
36+
django-111: Django>=1.11,<1.12
37+
django-dev: git+https://github.com/django/django.git#egg=Django
3138
flask-10: Flask>=0.10,<0.11
3239
flask-11: Flask>=0.11,<0.12
3340
flask-12: Flask>=0.12,<0.13
3441
celery-3: Celery>=3.1,<3.2
3542
celery-4: Celery>=4.0,<4.1
43+
fix: git+https://github.com/pytest-dev/pytest-django.git#egg=pytest_django
3644
setenv =
3745
PYTHONDONTWRITEBYTECODE=1
3846
TESTPATH=tests

0 commit comments

Comments
 (0)