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 56d30a4 commit cadec71Copy full SHA for cadec71
1 file changed
Makefile
@@ -64,12 +64,12 @@ format: tool
64
test-all: test-example test
65
66
test: tool
67
- [ -n "$(MODULE)" ] && module="--no-cov tests/test_$(MODULE).py" || module=; \
+ [ -n "$(MODULE)" ] && module="--no-cov tests/test_$(MODULE).py" || module=tests; \
68
. .venv/bin/activate && export PATH=./tools/SPTK/bin:$$PATH NUMBA_CUDA_LOW_OCCUPANCY_WARNINGS=0 PYLSTRAIGHT_DEBUG=1 && \
69
python -m pytest $$module $(OPT)
70
71
test-example: tool
72
- [ -n "$(MODULE)" ] && module=modules/$(MODULE).py || module=; \
+ [ -n "$(MODULE)" ] && module=modules/$(MODULE).py || module=modules; \
73
. .venv/bin/activate && export NUMBA_CUDA_LOW_OCCUPANCY_WARNINGS=0 && \
74
python -m pytest --doctest-modules --no-cov --ignore=$(PROJECT)/third_party $(PROJECT)/$$module
75
0 commit comments