mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Make 'make test' use the Python interpreter
On Windows this was failing [1] because it did not know to run ./dev_scripts/pytest-wrapper.py in the Python interpreter. The forward slashes didn't seem to cause issue. [1]: https://github.com/freedomofpress/dangerzone/actions/runs/3967654249/jobs/6799870096
This commit is contained in:
parent
bf6eacccf7
commit
06fe53b0d6
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -40,7 +40,7 @@ lint-apply: lint-black-apply lint-isort-apply ## apply all the linter's suggesti
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test:
|
test:
|
||||||
./dev_scripts/pytest-wrapper.py -v --cov --ignore dev_scripts
|
python ./dev_scripts/pytest-wrapper.py -v --cov --ignore dev_scripts
|
||||||
|
|
||||||
# Makefile self-help borrowed from the securedrop-client project
|
# Makefile self-help borrowed from the securedrop-client project
|
||||||
# Explaination of the below shell command should it ever break.
|
# Explaination of the below shell command should it ever break.
|
||||||
|
|
Loading…
Reference in a new issue