Skip to content

Commit

Permalink
Add testing for Django 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timgraham committed Oct 30, 2017
1 parent 5017302 commit af3bef8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -62,6 +62,7 @@ def read_files(*filenames):
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
Expand Down
8 changes: 5 additions & 3 deletions tox.ini
@@ -1,8 +1,9 @@
[tox]
distribute = False
envlist =
py{27,34,35}-django{18,110,111}
py36-django111
py{27,34,35}-django{18,110}
py{27,34,35,36}-django111
py{34,35,36}-django20
docs
skip_missing_interpreters = True

Expand All @@ -20,7 +21,8 @@ deps =
django18: Django>=1.8,<1.9
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<1.12
django111: Django>=1.11,<2.0
django20: Django>=2.0a1,<2.1
testfixtures
commands =
django-admin.py test {posargs}
Expand Down

0 comments on commit af3bef8

Please sign in to comment.