Skip to content

Commit c6caf58

Browse files
committed
fix minor
- Add mysqlclient deps - upload coverage step
1 parent 7641e3a commit c6caf58

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
TEST_DB_BACKEND: sqlite3
2525
run: tox -v
2626

27+
- name: Upload coverage
28+
uses: codecov/codecov-action@v5
29+
with:
30+
name: Python ${{ matrix.python-version }}
31+
2732
test-postgres:
2833
name: PostgreSQL • Python ${{ matrix.python-version }}
2934
runs-on: ubuntu-latest
@@ -65,6 +70,11 @@ jobs:
6570

6671
run: tox -v
6772

73+
- name: Upload coverage
74+
uses: codecov/codecov-action@v5
75+
with:
76+
name: Python ${{ matrix.python-version }}
77+
6878
test-mysql:
6979
name: MySQL • Python ${{ matrix.python-version }}
7080
runs-on: ubuntu-latest
@@ -110,3 +120,8 @@ jobs:
110120
TEST_DB_NAME: auditlog
111121
TEST_DB_PORT: ${{ job.services.mysql.ports[3306] }}
112122
run: tox -v
123+
124+
- name: Upload coverage
125+
uses: codecov/codecov-action@v5
126+
with:
127+
name: Python ${{ matrix.python-version }}

docs/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ django>=4.2,<4.3
33
sphinx
44
sphinx_rtd_theme
55
psycopg2-binary
6+
mysqlclient==2.2.5

0 commit comments

Comments
 (0)