-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtox.ini
41 lines (38 loc) · 950 Bytes
/
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
[tox]
; the matrix names from tox envlist conflict with the basepython stuff here
; unless each one were to be manually configured
ignore_basepython_conflict = True
envlist =
{py37,py38,py39,py310}-django-32
{py38,py39,py310,py311}-django-41
{py38,py39,py310,py311}-django-42
coverage
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/djfractions:{toxinidir}/test_project/frac
commands =
coverage run --source djfractions runtests.py
mypy djfractions
deps =
django-32: Django>=3.2,<3.3
django-40: Django>=4.0,<4.1
django-41: Django>=4.1,<4.2
django-42: Django>=4.2,<4.3
-r{toxinidir}/requirements-test.txt
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
coverage: python3.10
[testenv:coverage]
commands=
coverage report