-
Notifications
You must be signed in to change notification settings - Fork 86
/
tox.ini
53 lines (46 loc) · 1.31 KB
/
tox.ini
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
minversion=2.7
skip_missing_interpreters=True
envlist =
{py,pypy}{35,36,37,38}-django{2.2}
{py,pypy}{36,37,38,39}-django{3.0,3.1}
{py,pypy}{36,37,38,39,py310}-django{3.2}
{py,pypy}{38,39,310}-django{4.0}
{py,pypy}{38,39,310,311}-django{4.1}
{py,pypy}{38,39,310,311,312}-django{4.2}
{py,pypy}{310,311,312}-django{5.0}
[gh-actions]
python =
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
pypy-3.8: pypy38
pypy-3.9: pypy39
pypy-3.10: pypy310
pypy-3.11: pypy311
pypy-3.12: pypy312
[testenv]
commands =
python example_project/manage.py makemigrations --check --dry-run experiments
python -W error::DeprecationWarning testrunner.py
deps =
mock
django2.2: Django==2.2.*
django2.2: jsonfield>=1.0.3,<3
django3.0: Django==3.0.*
django3.0: jsonfield>=1.0.3,<3
django3.1: Django==3.1.*
django3.1: jsonfield>=1.0.3,<3
django3.2: Django==3.2.*
django4.0: Django==4.0.*
django4.1: Django==4.1.*
django4.2: Django==4.2.*
django5.0: Django==5.0.*