We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21891bd commit db910a0Copy full SHA for db910a0
tox.ini
@@ -9,14 +9,20 @@ passenv =
9
constraints = constraints.txt
10
11
[testenv]
12
-package = wheel
13
-wheel_build_env = .pkg
+package = external
14
extras = testing
15
16
commands = make test
17
allowlist_externals =
18
make
19
+[testenv:.pkg_external]
20
+deps = build
21
+package_glob = {toxinidir}{/}dist{/}*.whl
22
+commands =
23
+ python -c 'import shutil; shutil.rmtree("{toxinidir}{/}dist", ignore_errors=True)'
24
+ pyproject-build --outdir {toxinidir}{/}dist .
25
+
26
[testenv:pytest-min]
27
28
constraints = dependencies/pytest-min/constraints.txt
0 commit comments