1
1
[tox]
2
+ allowlist_externals = poetry
2
3
isolated_build = True
3
4
envlist = bandit, check-copyright, black-check, vulture, mypy, py3{9,10,11,12}, docs
5
+ skip_install = True
4
6
5
7
[tox:.package]
6
8
# note tox will use the same python version as under what tox is installed to package
@@ -15,12 +17,11 @@ basepython = python3
15
17
# a fresh environment. Thus, dependencies are resolved by pip in the first
16
18
# place. But afterward we run Poetry, which will install the locked dependencies
17
19
# into the environment.
18
- allowlist_externals = poetry
19
20
setenv =
20
21
PYTHONPATH = {toxinidir}
21
- commands_pre =
22
- poetry install --no-root --sync
23
- poetry install --only testenv
22
+
23
+ [testenv:py{39,310,311,312}]
24
+ commands_pre = poetry install --only main --only testenv --sync
24
25
commands =
25
26
poetry run pytest \
26
27
--basetemp ={envtmpdir} \
@@ -32,10 +33,6 @@ commands =
32
33
--cov-report =html \
33
34
--cov-report =term {posargs}
34
35
35
- [testenv:py{39,310,311,312}]
36
- commands =
37
- {[testenv]commands}
38
-
39
36
# test environment for notebooks
40
37
[testenv:py{39,310,311,312}-nb]
41
38
deps =
@@ -57,27 +54,19 @@ commands =
57
54
mypy black_it tests scripts examples
58
55
59
56
[testenv:black]
60
- allowlist_externals = poetry
61
- skip_install = True
62
- commands_pre = poetry install --only black
57
+ commands_pre = poetry install --only black --sync
63
58
commands = black .
64
59
65
60
[testenv:black-check]
66
- allowlist_externals = poetry
67
- skip_install = True
68
- commands_pre = poetry install --only black
61
+ commands_pre = poetry install --only black --sync
69
62
commands = black --check --verbose .
70
63
71
64
[testenv:ruff]
72
- allowlist_externals = poetry
73
- skip_install = True
74
- commands_pre = poetry install --only ruff
65
+ commands_pre = poetry install --only ruff --sync
75
66
commands = ruff check --fix --show-fixes .
76
67
77
68
[testenv:ruff-check]
78
- allowlist_externals = poetry
79
- skip_install = True
80
- commands_pre = poetry install --only ruff
69
+ commands_pre = poetry install --only ruff --sync
81
70
commands = ruff check .
82
71
83
72
[testenv:bandit]
@@ -109,10 +98,7 @@ commands = darglint black_it
109
98
# a fresh environment. Thus, dependencies are resolved by pip in the first
110
99
# place. But afterward we run Poetry, which will install the locked dependencies
111
100
# into the environment.
112
- allowlist_externals = poetry
113
- commands_pre =
114
- poetry install --no-root --sync
115
- poetry install --only docs
101
+ commands_pre = poetry install --only main --only docs --sync
116
102
commands =
117
103
poetry run mkdocs build --clean
118
104
@@ -123,22 +109,17 @@ commands =
123
109
# a fresh environment. Thus, dependencies are resolved by pip in the first
124
110
# place. But afterward we run Poetry, which will install the locked dependencies
125
111
# into the environment.
126
- allowlist_externals = poetry
127
- commands_pre =
128
- poetry install --no-root --sync
129
- poetry install --only docs
112
+ commands_pre = poetry install --only main --only docs --sync
130
113
commands =
131
114
poetry run mkdocs build --clean
132
115
python -c ' print("###### Starting local server. Press Control+C to stop server ######")'
133
116
poetry run mkdocs serve
134
117
135
118
[testenv:check-copyright]
136
- skip_install = True
137
119
deps =
138
120
commands = python3 scripts/check_copyright.py
139
121
140
122
[testenv:spell_check]
141
- skip_install = True
142
123
deps =
143
124
allowlist_externals = {toxinidir}/scripts/spell-check.sh
144
125
commands = {toxinidir}/scripts/spell-check.sh --report
0 commit comments