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:
deeplow 2023-01-23 10:57:59 +00:00
parent bf6eacccf7
commit 06fe53b0d6
No known key found for this signature in database
GPG key ID: 577982871529A52A

View file

@ -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.