Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit 17a9094

Browse files
committed
improvement: add to tox for test different environments
1 parent 744652d commit 17a9094

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

tox.ini

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[tox]
2+
envlist =
3+
py{35,36,37}-django{20,21,22}
4+
5+
[testenv]
6+
deps=
7+
django20: Django>=2.0,<2.1
8+
django21: Django>=2.1,<2.2
9+
django22: Django>=2.2,<2.3
10+
django_mysql
11+
django-cors-headers
12+
django-crontab
13+
django-filter
14+
djangorestframework
15+
Scrapy
16+
scrapy-djangoitem
17+
setenv=
18+
PYTHONDONTWRITEBYTECODE=1
19+
changedir=
20+
demo_proj
21+
commands=
22+
{envpython} manage.py test django_covid19
23+
sitepackages=False

0 commit comments

Comments
 (0)