Skip to content

Commit

Permalink
move the ci breakpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
lobis committed Nov 29, 2023
1 parent 9572597 commit 716806c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,6 @@ jobs:
mamba install -c conda-forge zlib
conda list
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
with:
limit-access-to-actor: false

# # This doesn't work in the CI for some reason. ctest is somewhat redundant, but it's useful during development.
# - name: Build the c++ library and run tests
# run: |
Expand All @@ -88,7 +82,12 @@ jobs:
- name: Install the python bindings
run: python -m pip install .[test]

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }}
with:
limit-access-to-actor: false

- name: Run tests
run: |
export PYTHONPATH=$PYTHONPATH:$(pwd)/application/lib
python -m pytest -vv tests

0 comments on commit 716806c

Please sign in to comment.