Skip to content

Commit

Permalink
DPK-51: Add a matrix of Django and python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryAveryWeir committed Dec 20, 2020
1 parent 3e7d1e9 commit 81b8bd4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
language: python
env:
PYTHONPATH: .
matrix:
- DJANGO='>=3.1,<3.2'
- DJANGO='>=3.0,<3.1'
- DJANGO='>=2.2,<3.0'
- DJANGO='>=2.1,<2.2'
- DJANGO='>=2.0,<2.1'
python:
- "3.6.8"
- 3.8
- 3.7
- 3.6
install:
- pip install -r requirements.txt
- pip install coverage coveralls
- pip install --pre django$DJANGO
- pip install .
script:
- coverage run --source=django_presskit runtests.py
Expand Down

0 comments on commit 81b8bd4

Please sign in to comment.