From e8a18277dfb76704d5ef8519ac96d7c39807ed2a Mon Sep 17 00:00:00 2001 From: Stefan Marr Date: Sun, 26 Jan 2025 16:33:22 +0000 Subject: [PATCH] fix Signed-off-by: Stefan Marr --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1d3e29c3..c1640fcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,14 +145,14 @@ jobs: python3 setup.py sdist build python3 setup.py sdist bdist_wheel - - name: Install Wheel + - name: Install built package globally run: pip install dist/*.whl - - name: Run Integration Test + - name: Run integration test run: | set +e cd rebench - rebench -d -v ../rebench.conf e:TestRunner2 + rebench ../rebench.conf e:TestRunner2 REBENCH_EXIT=$? echo "rebench exit code: $REBENCH_EXIT"