Skip to content

Commit 70c81aa

Browse files
author
muxator
committed
provo a installare ambienti più minimali. Questo potrebbe ridurre la durata dei test
Qualora funzioni, splittare il changeset.
1 parent e703f3a commit 70c81aa

File tree

1 file changed

+11
-30
lines changed

1 file changed

+11
-30
lines changed

tox.ini

+11-30
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[tox]
2+
allowlist_externals = poetry
23
isolated_build = True
34
envlist = bandit, check-copyright, black-check, vulture, mypy, py3{9,10,11,12}, docs
5+
skip_install = True
46

57
[tox:.package]
68
# note tox will use the same python version as under what tox is installed to package
@@ -15,12 +17,11 @@ basepython = python3
1517
# a fresh environment. Thus, dependencies are resolved by pip in the first
1618
# place. But afterward we run Poetry, which will install the locked dependencies
1719
# into the environment.
18-
allowlist_externals = poetry
1920
setenv =
2021
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
2425
commands =
2526
poetry run pytest \
2627
--basetemp={envtmpdir} \
@@ -32,10 +33,6 @@ commands =
3233
--cov-report=html \
3334
--cov-report=term {posargs}
3435

35-
[testenv:py{39,310,311,312}]
36-
commands =
37-
{[testenv]commands}
38-
3936
# test environment for notebooks
4037
[testenv:py{39,310,311,312}-nb]
4138
deps =
@@ -57,27 +54,19 @@ commands =
5754
mypy black_it tests scripts examples
5855

5956
[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
6358
commands = black .
6459

6560
[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
6962
commands = black --check --verbose .
7063

7164
[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
7566
commands = ruff check --fix --show-fixes .
7667

7768
[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
8170
commands = ruff check .
8271

8372
[testenv:bandit]
@@ -109,10 +98,7 @@ commands = darglint black_it
10998
# a fresh environment. Thus, dependencies are resolved by pip in the first
11099
# place. But afterward we run Poetry, which will install the locked dependencies
111100
# 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
116102
commands =
117103
poetry run mkdocs build --clean
118104

@@ -123,22 +109,17 @@ commands =
123109
# a fresh environment. Thus, dependencies are resolved by pip in the first
124110
# place. But afterward we run Poetry, which will install the locked dependencies
125111
# 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
130113
commands =
131114
poetry run mkdocs build --clean
132115
python -c 'print("###### Starting local server. Press Control+C to stop server ######")'
133116
poetry run mkdocs serve
134117

135118
[testenv:check-copyright]
136-
skip_install = True
137119
deps =
138120
commands = python3 scripts/check_copyright.py
139121

140122
[testenv:spell_check]
141-
skip_install = True
142123
deps =
143124
allowlist_externals = {toxinidir}/scripts/spell-check.sh
144125
commands = {toxinidir}/scripts/spell-check.sh --report

0 commit comments

Comments
 (0)