From 06fe53b0d6c5509bafd5677ed4113b5fd9e29657 Mon Sep 17 00:00:00 2001 From: deeplow Date: Mon, 23 Jan 2023 10:57:59 +0000 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c1e247f..05c64e5 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,7 @@ lint-apply: lint-black-apply lint-isort-apply ## apply all the linter's suggesti .PHONY: 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 # Explaination of the below shell command should it ever break.