Skip to content

Commit 8bdbcff

Browse files
author
Sean Bleier
committed
Be a little more explicit with exclusions.
1 parent 2c113d0 commit 8bdbcff

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

.travis.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,21 @@ python:
66
- 3.6
77
- 3.7
88
env:
9-
- DJANGO_VERSION=1.11
10-
- DJANGO_VERSION=2.0
11-
- DJANGO_VERSION=2.1
9+
- DJANGO_VERSION='==1.11'
10+
- DJANGO_VERSION='==2.0'
11+
- DJANGO_VERSION='==2.1'
1212
matrix:
1313
exclude:
1414
- python: 2.7
15-
env: DJANGO_VERSION='>=2.0'
15+
env: DJANGO_VERSION='==2.0'
16+
- python: 2.7
17+
env: DJANGO_VERSION='==2.1'
18+
- python: 3.5
19+
env: DJANGO_VERSION='==1.11'
20+
- python: 3.6
21+
env: DJANGO_VERSION='==1.11'
22+
- python: 3.7
23+
env: DJANGO_VERSION='==1.11'
1624
# command to run tests
1725
install: ./install_redis.sh
1826
script: make test DJANGO_VERSION=$DJANGO_VERSION

0 commit comments

Comments
 (0)