From 5f136b6323b3393337d08804e721196829ae21e5 Mon Sep 17 00:00:00 2001 From: geisserml Date: Tue, 31 Oct 2023 20:08:58 +0100 Subject: [PATCH] conda: fix test run on windows On windows, conda sets up only `python`, not `python3`. Change to just call pytest directly instead of through the ${PYTHON} -m syntax. --- .github/workflows/conda.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/conda.yaml b/.github/workflows/conda.yaml index dac1b198e..b5ae47307 100644 --- a/.github/workflows/conda.yaml +++ b/.github/workflows/conda.yaml @@ -113,7 +113,7 @@ jobs: if: inputs.package == 'helpers' run: | conda install -y pytest pillow numpy - ./run test + pytest tests/ tests_old/ publish: