-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
78 lines (69 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[tox]
minversion = 4
isolated_build = true
skip_missing_interpreters = true
toxworkdir = {env:TOX_WORKDIR:.tox}
envlist =
lint
coverage
report
python{38,39,310,311,312}
clean
[gh-actions]
python =
3.8: python38
3.9: python39
3.10: python310
3.11: python311
3.12: python312
[testenv:lint]
skip_install = true
description = Invoke ruff on the project.
allowlist_externals = poetry
commands =
poetry run ruff format --check cvmfsscraper
poetry run ruff check cvmfsscraper
[testenv:lint-fix]
skip_install = true
description = Invoke ruff on the project, and fix fixable issues.
allowlist_externals = poetry
commands =
poetry run ruff format cvmfsscraper
poetry run ruff check --fix cvmfsscraper
[testenv]
description = Run tests against {envname}.
setenv =
passenv = GITHUB_*
basepython =
python38: python3.8
python39: python3.9
python310: python3.10
python311: python3.11
python312: python3.12
allowlist_externals =
poetry
commands =
poetry install
poetry run python --version
poetry run pytest -n auto cvmfsscraper/tests
[testenv:clean]
description = Remove coverage data
deps = coverage
skip_install = true
allowlist_externals =
coverage
rm
commands =
coverage erase
[testenv:coverage]
description = Generate coverage data
passenv = GITHUB_*
skip_install = true
allowlist_externals = poetry
commands = poetry run coverage run --source cvmfsscraper --module pytest cvmfsscraper/tests
[testenv:report]
description = Report coverage data
skip_install = true
allowlist_externals = poetry
commands =
poetry run coverage report -m