We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3ed6a commit 44eace0Copy full SHA for 44eace0
.github/workflows/tests.yaml
@@ -32,12 +32,18 @@ jobs:
32
with:
33
python-version: ${{ matrix.python-version }}
34
35
+ - name: Install dependencies
36
+ env:
37
+ PIP_NO_PYTHON_VERSION_WARNING: 1
38
+ PIP_DISABLE_PIP_VERSION_CHECK: 1
39
+ run: |
40
+ pip install -U coverage pytest pytest-cov
41
+ python setup.py develop
42
+
43
- name: Run tests
44
env:
45
TESTDB: actions.cnf
46
run: |
- pip install -U coverage pytest pytest-cov
- pip install .
47
pytest --cov=MySQLdb tests
48
49
- uses: codecov/codecov-action@v1
0 commit comments