Skip to content

Commit 3a319ba

Browse files
Евгений БлиновЕвгений Блинов
authored andcommitted
Remove PyPy-specific test job in coverage workflow
1 parent 128f0a9 commit 3a319ba

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

.github/workflows/tests_and_coverage.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@ jobs:
6060
shell: bash
6161
run: pip list
6262

63-
- name: Run tests and show the branch coverage on the command line (CPython)
64-
if: "!startsWith(matrix.python-version, 'pypy')"
63+
- name: Run tests and show the branch coverage on the command line
6564
shell: bash
6665
run: |
6766
pth_file="$(python -c 'import sysconfig; print(sysconfig.get_path("purelib"))')/suby_coverage_process_startup.pth"
@@ -72,11 +71,6 @@ jobs:
7271
coverage report -m --fail-under=100 --omit='*tests*'
7372
coverage xml --omit='*tests*'
7473
75-
- name: Run tests and show the branch coverage on the command line (PyPy)
76-
if: startsWith(matrix.python-version, 'pypy')
77-
shell: bash
78-
run: pytest --cov=suby --cov-branch --cov-report=term-missing --cov-report=xml:coverage.xml --cov-fail-under=100 -n auto --cache-clear --assert=plain
79-
8074
- name: Upload coverage to Coveralls
8175
if: runner.os == 'Linux' && matrix.python-version == '3.13'
8276
env:

0 commit comments

Comments
 (0)