Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
update environmnets list
Browse files Browse the repository at this point in the history
  • Loading branch information
sv0 committed Apr 15, 2019
1 parent 8e9ef2d commit c43d435
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 6 deletions.
2 changes: 1 addition & 1 deletion tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
'tests',
)

MIDDLEWARE_CLASSES = (
MIDDLEWARE = (
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
Expand Down
29 changes: 24 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
[tox]
envlist=py36-d20,py36-d21,py35-d20,py35-d21,cov,flake8
envlist=
py35-d20
py35-d21
py35-d22
py36-d20
py36-d21
py36-d22
cov
flake8

[tox:travis]
3.5 = py35
3.6 = py36, cov
3.7 = py37

[pylama]
skip=example/*
Expand Down Expand Up @@ -36,22 +45,32 @@ commands=flake8 django_markdown

[testenv:py35-d20]
deps =
django==2.0.9
django<=2.1
{[testenv]deps}

[testenv:py35-d21]
deps =
django==2.1.4
django<=2.2
{[testenv]deps}

[testenv:py35-d22]
deps =
django<=2.3
{[testenv]deps}

[testenv:py36-d20]
deps =
django==2.0.9
django<=2.1
{[testenv]deps}

[testenv:py36-d21]
deps =
django==2.1.4
django<=2.2
{[testenv]deps}

[testenv:py36-d22]
deps =
django<=2.3
{[testenv]deps}

[testenv:cov]
Expand Down

0 comments on commit c43d435

Please sign in to comment.