From 4556b4d2a3f9ec8d4dfe57c951c67a14159c314c Mon Sep 17 00:00:00 2001 From: fraguada Date: Thu, 18 Jul 2024 12:51:45 +0200 Subject: [PATCH] fix python test in workflow_release --- .github/workflows/workflow_release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/workflow_release.yml b/.github/workflows/workflow_release.yml index e5cf53d3..77f3200e 100644 --- a/.github/workflows/workflow_release.yml +++ b/.github/workflows/workflow_release.yml @@ -151,7 +151,8 @@ jobs: run: | find ./dist -type f -name "*.whl" -exec cp '{}' ./tests/python/lib \; pip install --no-index tests/python/lib/*.whl --force-reinstall - python -m unittest discover tests/python/ + cd tests/python + python -m unittest discover . - name: artifact name id: artifactname shell: bash