Commit 8bdbcffb authored by Sean Bleier's avatar Sean Bleier

Be a little more explicit with exclusions.

parent 2c113d0e
...@@ -6,13 +6,21 @@ python: ...@@ -6,13 +6,21 @@ python:
- 3.6 - 3.6
- 3.7 - 3.7
env: env:
- DJANGO_VERSION=1.11 - DJANGO_VERSION='==1.11'
- DJANGO_VERSION=2.0 - DJANGO_VERSION='==2.0'
- DJANGO_VERSION=2.1 - DJANGO_VERSION='==2.1'
matrix: matrix:
exclude: exclude:
- python: 2.7 - python: 2.7
env: DJANGO_VERSION='>=2.0' env: DJANGO_VERSION='==2.0'
- python: 2.7
env: DJANGO_VERSION='==2.1'
- python: 3.5
env: DJANGO_VERSION='==1.11'
- python: 3.6
env: DJANGO_VERSION='==1.11'
- python: 3.7
env: DJANGO_VERSION='==1.11'
# command to run tests # command to run tests
install: ./install_redis.sh install: ./install_redis.sh
script: make test DJANGO_VERSION=$DJANGO_VERSION script: make test DJANGO_VERSION=$DJANGO_VERSION
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment