Skip to content

Commit 859a80e

Browse files
committed
Drop coverage reporting from the GitHub action for now
1 parent 03e8200 commit 859a80e

File tree

2 files changed

+1
-18
lines changed

2 files changed

+1
-18
lines changed

.github/workflows/test.yml

-15
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,6 @@ jobs:
5959
DB_HOST: 127.0.0.1
6060
DB_PORT: 3306
6161

62-
- name: Upload coverage
63-
uses: codecov/codecov-action@v1
64-
with:
65-
name: Python ${{ matrix.python-version }}
66-
6762
postgres:
6863
runs-on: ubuntu-latest
6964
strategy:
@@ -120,11 +115,6 @@ jobs:
120115
DB_HOST: localhost
121116
DB_PORT: 5432
122117

123-
- name: Upload coverage
124-
uses: codecov/codecov-action@v1
125-
with:
126-
name: Python ${{ matrix.python-version }}
127-
128118
sqlite:
129119
runs-on: ubuntu-latest
130120
strategy:
@@ -165,11 +155,6 @@ jobs:
165155
DB_BACKEND: sqlite3
166156
DB_NAME: ":memory:"
167157

168-
- name: Upload coverage
169-
uses: codecov/codecov-action@v1
170-
with:
171-
name: Python ${{ matrix.python-version }}
172-
173158
lint:
174159
runs-on: ubuntu-latest
175160
strategy:

tox.ini

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ deps =
1212
djmain: https://github.com/django/django/archive/main.tar.gz
1313
postgresql: psycopg2-binary
1414
mysql: mysqlclient
15-
coverage
1615
passenv=
1716
CI
1817
DB_BACKEND
@@ -32,8 +31,7 @@ setenv =
3231
DB_PASSWORD = {env:DB_PASSWORD:tree_queries}
3332
pip_pre = True
3433
commands =
35-
coverage run tests/manage.py test -v 2 {posargs:testapp}
36-
coverage report -m
34+
python tests/manage.py test -v 2 {posargs:testapp}
3735

3836
[testenv:py{38,39,310}-dj{32,40,41,main}-postgresql]
3937
setenv =

0 commit comments

Comments
 (0)