From dc9ab5a561b758ffb368cfd6ed78ec09a0935445 Mon Sep 17 00:00:00 2001 From: AlexWells Date: Fri, 27 Sep 2024 10:23:00 +0100 Subject: [PATCH] Test different command --- .github/workflows/code.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index 67dc1173..076077a0 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -100,7 +100,7 @@ jobs: CIBW_BUILD: ${{ matrix.python }}*64 CIBW_TEST_EXTRAS: dev #CIBW_BEFORE_ALL: ${{ (matrix.use_master == 'false' && 'pip install git+https://github.com/epics-base/epicscorelibs.git git+https://github.com/epics-base/pvxs.git git+https://github.com/epics-base/p4p.git') || '' }} - CIBW_BEFORE_ALL: 'pip install git+https://github.com/epics-base/epicscorelibs.git git+https://github.com/epics-base/pvxs.git git+https://github.com/epics-base/p4p.git' + CIBW_BEFORE_ALL: 'pip install -v git+https://github.com/epics-base/p4p.git && pip install -v --no-warn-conflicts git+https://github.com/epics-base/pvxs.git git+https://github.com/epics-base/epicscorelibs.git' CIBW_TEST_COMMAND: pytest {project}/tests --cov-report xml:${{ matrix.cov_file }} --junit-xml=${{ matrix.results_file }} # Run with faulthandler and -s in the hope we get a stack trace on seg fault on windows... CIBW_TEST_COMMAND_WINDOWS: python -X faulthandler -m pytest -s {project}/tests --cov-report xml:${{ matrix.cov_file }} --junit-xml=${{ matrix.results_file }}