Skip to content

Commit

Permalink
added django 1.11 to tox
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-karpovich committed Jul 16, 2020
1 parent 0e84a8c commit 742acd5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@

setup(
name='drf-batch-requests',
version='0.9.1',
version='0.9.2',
packages=['drf_batch_requests', ],
include_package_data=True,
license='MIT License',
Expand Down
13 changes: 7 additions & 6 deletions tox.ini
@@ -1,22 +1,23 @@
[tox]
envlist =
py38-linter,
{py36,py37,py38}-django{22,30},
{py36,py37,py38}-django{111,22,30},
[testenv]
setenv=
PYTHONPATH=
deps =
django111: django>=1.11,<2
django22: django>=2.2,<3
django30: django>=3.0,<3.1

django{22,30}: djangorestframework
django{111,22,30}: djangorestframework

django{22,30}: mock
django{22,30}: coverage
django{111,22,30}: mock
django{111,22,30}: coverage
linter: isort>=5.1
linter: flake8
commands =
linter: flake8 .
linter: isort . --check-only --rr
django{22,30}: coverage erase
django{22,30}: coverage run ./runtests.py
django{111,22,30}: coverage erase
django{111,22,30}: coverage run ./runtests.py

0 comments on commit 742acd5

Please sign in to comment.