Skip to content

Commit

Permalink
Run tests without coverage in GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Nov 4, 2024
1 parent e7ab6d5 commit 40e64f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
run: python -m pip install -r .github/workflows/requirements.txt
- name: Build C extension in debug mode
run: python -m pip install -e . -vv --no-build-isolation
- name: Test with coverage
run: python -m coverage run -m unittest pyopal.tests -vv
- name: Test package
run: python -m unittest pyopal.tests -vv
# - name: Upload to Codecov
# if: matrix.python-impl == 'CPython'
# uses: codecov/codecov-action@v3
Expand Down Expand Up @@ -135,8 +135,8 @@ jobs:
run: python -m pip install -r .github/workflows/requirements.txt
- name: Build C extension in debug mode
run: python -m pip install -e . -vv --no-build-isolation
- name: Test with coverage
run: python -m coverage run -m unittest pyopal.tests -vv
- name: Test package
run: python -m unittest pyopal.tests -vv
# - name: Upload to Codecov
# if: matrix.python-impl == 'CPython'
# uses: codecov/codecov-action@v3
Expand Down

0 comments on commit 40e64f8

Please sign in to comment.