From 208dec16578bab7021e2b956e3d5a72c8ed579e7 Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Tue, 5 Nov 2024 18:33:13 +0100 Subject: [PATCH] .. --- .github/workflows/test_python_cplusplus.yml | 6 ++++++ scripts/run-python-tests.sh | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_python_cplusplus.yml b/.github/workflows/test_python_cplusplus.yml index eeaefe462e..63056a80c1 100644 --- a/.github/workflows/test_python_cplusplus.yml +++ b/.github/workflows/test_python_cplusplus.yml @@ -259,6 +259,9 @@ jobs: - uses: actions/checkout@v4 - run: git fetch --prune --unshallow + - name: Install lldb + run: brew install llvm + - name: Install dependencies uses: ./.github/actions/install-macos-dependencies @@ -321,6 +324,9 @@ jobs: - uses: actions/checkout@v4 - run: git fetch --prune --unshallow + - name: Install lldb + run: brew install llvm + - name: Install dependencies uses: ./.github/actions/install-macos-dependencies diff --git a/scripts/run-python-tests.sh b/scripts/run-python-tests.sh index e54490e3ee..c8ab2c3efa 100755 --- a/scripts/run-python-tests.sh +++ b/scripts/run-python-tests.sh @@ -15,7 +15,7 @@ cd "${amici_path}"/python/tests source "${amici_path}"/venv/bin/activate # PEtab tests are run separately -gdb -q -ex "run" -ex "bt" -ex "quit" --args python -m pytest -s \ +lldb --batch -o "run" -o "bt" -o "quit" -- python -m pytest -s \ --ignore-glob=*petab* \ --ignore-glob=*test_splines.py \ --durations=10 \