Skip to content

Commit 5f30975

Browse files
fix: Pytest instructions wrong command (#3816)
1 parent 13291b7 commit 5f30975

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/RepoPage/CoverageOnboarding/UseFrameworkInstructions.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
},
9595
Pytest: {
9696
install: 'pip install pytest pytest-cov',
97-
run: 'pytest --cov-branch --cov-report=xml',
97+
run: 'pytest --cov --cov-branch --cov-report=xml',
9898
githubActionsWorkflow: `name: Run tests and upload coverage
9999
100100
on:
@@ -117,7 +117,7 @@ jobs:
117117
run: pip install pytest pytest-cov
118118
119119
- name: Run tests
120-
run: pytest --cov-branch --cov-report=xml
120+
run: pytest --cov --cov-branch --cov-report=xml
121121
122122
- name: Upload results to Codecov
123123
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)