-
Notifications
You must be signed in to change notification settings - Fork 27
/
tox.ini
48 lines (44 loc) · 870 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
42
43
44
45
46
47
48
[tox]
isolated_build = True
envlist =
py{38,39,310,311}-django{32}
py{38,39,310,311}-django{40}
flake8
coverage
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
setenv =
PYTHONDONTWRITEBYTECODE=1
DJANGO_SETTINGS_MODULE=tests.settings
basepython =
py37: python3.7
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
.package: python3
deps =
django32: Django>=3.2,<4
django40: Django>=4.0
allowlist_externals = poetry
commands =
poetry install -v
poetry run pytest tests/
[testenv:flake8]
basepython =
python3.11
commands =
poetry install -v
poetry run flake8 src
[testenv:coverage]
basepython =
python3.11
commands =
poetry install -v
poetry run pytest --cov=django_scim --cov-report=xml --cov-report=term