We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 401bb15 commit 5fc6226Copy full SHA for 5fc6226
.github/workflows/main.yml
@@ -8,7 +8,7 @@ on:
8
jobs:
9
build:
10
name: Python ${{ matrix.python-version }}
11
- runs-on: ubuntu-latest
+ runs-on: ubuntu-20.04
12
13
strategy:
14
matrix:
@@ -35,7 +35,6 @@ jobs:
35
- name: Install dependencies
36
run: |
37
python -m pip install --upgrade pip
38
- pip install flake8 pytest
39
if [ -f requirements/dev.txt ]; then pip install -r requirements/dev.txt; fi
40
41
- name: Lint with flake8
@@ -47,4 +46,5 @@ jobs:
47
46
48
- name: Test with pytest
49
50
- pytest
+ python -m pytest -v -s --cov=nested_multipart_parser --cov-report=xml --capture=tee-sys ./tests
+ python -m coverage report -m
requirements/dev.txt
@@ -3,4 +3,5 @@ Django
3
djangorestframework
4
5
pytest
6
-pytest-cov
+pytest-cov
7
+flake8
0 commit comments