Skip to content

Commit

Permalink
Fixing action
Browse files Browse the repository at this point in the history
  • Loading branch information
lmdiazangulo committed Dec 14, 2024
1 parent dd1f6d5 commit 01efe97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu-gnu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
python -m pip install -r requirements.txt
- name: Run all wrapper tests
if: ${{matrix.mtln}}=='Yes'
if: matrix.mtln=='Yes'
run: python -m pytest test/

- name: Run non-mtln wrapper tests
if: ${{matrix.mtln}}=='No'
if: matrix.mtln=='No'
run: python -m pytest -m 'not mtln' test/


0 comments on commit 01efe97

Please sign in to comment.