Skip to content

Commit 6681531

Browse files
authored
remove coverage report
1 parent f8ea83e commit 6681531

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/python-app.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
shell: bash
4343
run: |
4444
python -m pip install --upgrade pip
45-
pip install flake8 pytest coverage
45+
pip install flake8 pytest
4646
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
4747
- name: Lint with flake8
4848
shell: bash
@@ -51,8 +51,7 @@ jobs:
5151
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
5252
# Exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide.
5353
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
54-
- name: Test with coverage
54+
- name: Test with pytest
5555
shell: bash
5656
run: |
57-
coverage run -m pytest
58-
coverage report
57+
pytest

0 commit comments

Comments
 (0)