Skip to content

Commit 0dc95fd

Browse files
authored
ci: Remove Codecov
An unnecessary breaking change was deployed without updating the major version (codecov/codecov-action#1835). Its web UI still doesn’t work most of the time and its value is limited, so I’d rather just remove it again.
1 parent 134152c commit 0dc95fd

1 file changed

Lines changed: 2 additions & 13 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,21 +101,10 @@ jobs:
101101
- name: Test libweasyl
102102
env:
103103
WEASYL_TEST_SQLALCHEMY_URL: postgresql+psycopg2://weasyl@weasyl-database/weasyl_test
104-
run: .venv/bin/coverage run -m pytest libweasyl.test libweasyl.models.test
104+
run: .venv/bin/python -m pytest libweasyl.test libweasyl.models.test
105105

106106
- name: Test weasyl
107107
env:
108108
WEASYL_APP_ROOT: .
109109
WEASYL_STORAGE_ROOT: testing
110-
run: .venv/bin/coverage run -m pytest weasyl.test
111-
112-
- name: Create coverage report
113-
run: |
114-
.venv/bin/coverage combine
115-
.venv/bin/coverage xml
116-
117-
- name: Upload coverage to Codecov
118-
uses: codecov/codecov-action@v5
119-
with:
120-
files: ./coverage.xml
121-
use_oidc: true
110+
run: .venv/bin/python -m pytest weasyl.test

0 commit comments

Comments
 (0)