From 64c98e50e29547726e6b4c058e15d68757d06621 Mon Sep 17 00:00:00 2001 From: David Perl Date: Tue, 14 Oct 2025 11:51:23 +0200 Subject: [PATCH] fix: pytest invocation with correct rootdir --- .github/workflows/child_repos.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/child_repos.yml b/.github/workflows/child_repos.yml index 8ffab363..ee540d84 100644 --- a/.github/workflows/child_repos.yml +++ b/.github/workflows/child_repos.yml @@ -44,7 +44,7 @@ jobs: run: | cd ./bec pip install pytest pytest-random-order - pytest -v --maxfail=2 --junitxml=report.xml --random-order ./bec_server/tests ./bec_ipython_client/tests/client_tests ./bec_lib/tests + python -m pytest -v --maxfail=2 --junitxml=report.xml --random-order ./bec_server/tests ./bec_ipython_client/tests/client_tests ./bec_lib/tests bec-e2e-test: name: BEC End2End Tests runs-on: ubuntu-latest