From e688a3a9df0f5b48a1373042bcd82c502e7a8869 Mon Sep 17 00:00:00 2001 From: Jelle Spijker Date: Tue, 5 Dec 2023 05:51:48 +0100 Subject: [PATCH] use relative location of pytest Somehow pytest can't be found on the PATH Contributes to CURA-10831 --- .github/workflows/unit-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 2312340a11..d8716c9dac 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -56,6 +56,6 @@ jobs: with: recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} conan_extra_args: '-o cura:devtools=True -c tools.build:skip_test=False' - unit_test_cmd: 'pytest --junitxml=junit_cura.xml' + unit_test_cmd: '../venv/bin/pytest --junitxml=junit_cura.xml' unit_test_dir: 'tests' conan_generator_dir: './venv/bin' \ No newline at end of file