-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtox.ini
More file actions
48 lines (44 loc) · 884 Bytes
/
tox.ini
File metadata and controls
48 lines (44 loc) · 884 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
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 =
py38
py39
py310
py311
py312
ruff
coverage
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312, ruff
[testenv]
setenv =
PYTHONDONTWRITEBYTECODE=1
basepython =
py38: python3.8
py39: python3.9
py310: python3.10
py311: python3.11
py312: python3.12
.package: python3
allowlist_externals = poetry
commands =
poetry install -v --extras "django-query"
poetry run pytest tests/
[testenv:ruff]
basepython =
python3.12
commands =
poetry install -v --extras "django-query"
poetry run ruff check src
poetry run ruff format --check --diff src
[testenv:coverage]
basepython =
python3.12
commands =
poetry install -v --extras "django-query"
poetry run pytest --cov=scim2_filter_parser --cov-report=xml --cov-report=term