File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,15 @@ setenv =
30
30
# so override any local setting.
31
31
PYTHONPYCACHEPREFIX =
32
32
33
+ # $set_env.py: COVERAGE_PIP_ARGS - Extra arguments for `pip install`
34
+ # `--no-build-isolation` will let tox work with no network.
33
35
commands =
34
36
# Create tests/zipmods.zip
35
37
python igor.py zip_mods
36
38
37
39
# Build the C extension and test with the CTracer
38
40
python setup.py --quiet build_ext --inplace
39
- python -m pip install -q -e .
41
+ python -m pip install {env:COVERAGE_PIP_ARGS} -q -e .
40
42
python igor.py test_with_tracer c {posargs}
41
43
42
44
# Remove the C extension so that we can test the PyTracer
@@ -84,7 +86,7 @@ commands =
84
86
python -m pylint --notes = {env:LINTABLE}
85
87
check-manifest --ignore ' doc/sample_html/*,.treerc'
86
88
# If 'build -q' becomes a thing (https://github.com/pypa/build/issues/188),
87
- # this can be simplifed :
89
+ # this can be simplified :
88
90
python igor.py quietly " python -m build"
89
91
twine check dist/*
90
92
You can’t perform that action at this time.
0 commit comments