Skip to content

Commit

Permalink
Ensure project is tested with latest Django release
Browse files Browse the repository at this point in the history
  • Loading branch information
ellmetha committed Apr 4, 2019
1 parent b2c2f5f commit 07c7d36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ env:
- DJANGO_ENV="django>=2.1,<2.2" DB=sqlite
- DJANGO_ENV="django>=2.1,<2.2" DB=postgres
- DJANGO_ENV="django>=2.1,<2.2" DB=mysql
- DJANGO_ENV="django==2.2rc1" DB=sqlite
- DJANGO_ENV="django==2.2rc1" DB=postgres
- DJANGO_ENV="django==2.2rc1" DB=mysql
- DJANGO_ENV="django>=2.2,<3.0" DB=sqlite
- DJANGO_ENV="django>=2.2,<3.0" DB=postgres
- DJANGO_ENV="django>=2.2,<3.0" DB=mysql

matrix:
allow_failures:
Expand All @@ -42,11 +42,11 @@ matrix:
- python: "3.4"
env: DJANGO_ENV="django>=2.1,<2.2" DB=mysql
- python: "3.4"
env: DJANGO_ENV="django==2.2rc1" DB=sqlite
env: DJANGO_ENV="django>=2.2,<3.0" DB=sqlite
- python: "3.4"
env: DJANGO_ENV="django==2.2rc1" DB=postgres
env: DJANGO_ENV="django>=2.2,<3.0" DB=postgres
- python: "3.4"
env: DJANGO_ENV="django==2.2rc1" DB=mysql
env: DJANGO_ENV="django>=2.2,<3.0" DB=mysql

install:
- if [[ $DB == "mysql" ]]; then sudo apt-get install -qq libmysqlclient-dev && pip install mysqlclient; fi
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deps =
pipenv
django20: Django>=2.0,<2.1
django21: Django>=2.1,<2.2
django22: Django==2.2rc1
django22: Django>=2.2,<3.0
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}
passenv = PYTHONPATH
Expand Down

0 comments on commit 07c7d36

Please sign in to comment.