Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,18 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
env:
PIP_NO_PYTHON_VERSION_WARNING: 1
PIP_DISABLE_PIP_VERSION_CHECK: 1
run: |
pip install -U coverage pytest pytest-cov
python setup.py develop

- name: Run tests
env:
TESTDB: actions.cnf
run: |
pip install -U coverage pytest pytest-cov
pip install .
pytest --cov=MySQLdb tests

- uses: codecov/codecov-action@v1