Skip to content

Commit

Permalink
Specify debug executable explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
langmm committed Jan 22, 2024
1 parent a5bfde6 commit 964e48f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ jobs:

- name: Install dependencies
run: |
pip install -r requirements-test.txt
pip install --config-settings=cmake.build-type="Debug" --config-settings=cmake.define.RAPIDJSON_CHECK_PYREFS:BOOL=ON -v .
/home/runner/venv-${{ matrix.python-version }}/bin/python${{ matrix.python-version }}-dbg -m pip install -r requirements-test.txt
/home/runner/venv-${{ matrix.python-version }}/bin/python${{ matrix.python-version }}-dbg -m pip install --config-settings=cmake.build-type="Debug" --config-settings=cmake.define.RAPIDJSON_CHECK_PYREFS:BOOL=ON -v .
# pip install --config-settings=cmake.build-type=Debug -v .
- run: |
pytest -sv tests/test_refs_count.py::test_leaks
home/runner/venv-${{ matrix.python-version }}/bin/python${{ matrix.python-version }}-dbg pytest -sv tests/test_refs_count.py::test_leaks
build_wheels:
name: Build wheels on ${{matrix.arch}} for ${{ matrix.os }}
Expand Down

0 comments on commit 964e48f

Please sign in to comment.