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 41e5b60 commit e4d23b6Copy full SHA for e4d23b6
1 file changed
.github/workflows/run_tests.yml
@@ -30,8 +30,9 @@ jobs:
30
31
- name: Run tests with coverage
32
run: |
33
- # Run pytest on the entire tests directory
34
- # Generate coverage report for specified source directories
35
- # Report missing lines directly in the terminal output
36
- python -m pytest tests/ --cov=spice --cov=cli --cov=utils --cov=parser --cov=lexers --cov-report=term-missing
+ python -m pytest tests/ \
+ --cov=spice --cov=cli --cov=utils --cov=parser --cov=lexers \
+ --cov-report=term-missing \
+ --cov-report=xml # <-- this line generates coverage.xml
37
+
38
0 commit comments