diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 609064ba5..56ed79538 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -37,7 +37,9 @@ jobs: python -m pip install networkx cython pytest-cov - name: Install PySCIPOpt - run: python -m pip install . + run: | + export CFLAGS="-O0 -ggdb" # disable compiler optimizations for faster builds + python -m pip install . - name: Run pyscipopt tests run: |