-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtox.ini
More file actions
28 lines (26 loc) · 726 Bytes
/
tox.ini
File metadata and controls
28 lines (26 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[tox]
envlist =
{py37}-django-{32}
{py38}-django-{32,40,41,42}
{py39}-django-{32,40,41,42}
{py310}-django-{32,40,41,42}
{py311}-django-{32,40,41,42}
[testenv]
commands = ./runtests.py --fast --coverage {posargs}
envdir = {toxworkdir}/venvs/{envname}
setenv =
PYTHONDONTWRITEBYTECODE=1
PYTHONWARNINGS=once
DJANGO_SETTINGS_MODULE=tracking_fields.tests.settings
deps =
django-32: Django>=3.2,<4.0
django-40: Django>=4.0,<4.1
django-41: Django>=4.1,<4.2
django-42: Django>=4.2,<5.0
-r requirements.txt
-r dev-requirements.txt
[testenv:base]
; Ensure optional dependencies are not required
deps =
django
-r requirements.txt