Skip to content

Commit

Permalink
add Django 2.0 to Travis tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stebunovd committed Apr 25, 2018
1 parent 9539e5c commit be4faec
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "pypy"
- 2.7
- 3.5
- 3.6
- pypy
env:
- DJANGO="Django>=1.8,<1.9"
- DJANGO="Django>=1.9,<1.10"
- DJANGO="Django>=1.10,<1.11"
- DJANGO="Django>=1.11,<2.0"
- DJANGO="Django>=2.0,<2.1"
install:
- pip install PLY
- pip install -U $DJANGO
- pip install -e .
script: python test_project/manage.py test core.tests
notifications:
slack: ivelum:m5sGlwz1uEy5sQ32n0kg9lNh
matrix:
exclude:
- python: 2.7
env: DJANGO="Django>=2.0,<2.1"
- python: pypy
env: DJANGO="Django>=2.0,<2.1"

0 comments on commit be4faec

Please sign in to comment.