We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44c5850 commit d2b7e74Copy full SHA for d2b7e74
.github/workflows/main.yml
@@ -28,7 +28,11 @@ jobs:
28
- name: Install dependencies
29
run: |
30
python -m pip install --upgrade pip
31
+ pip install toml
32
pip install -r requirements.txt
33
34
- name: Test with coverage reporting
35
run: coverage run -m unittest discover -s tests
36
+
37
+ - name: Export coverage data as LCOV
38
+ run: coverage lcov -o coverage.lcov
.gitignore
@@ -172,3 +172,5 @@ cython_debug/
172
173
# PyPI configuration file
174
.pypirc
175
176
+coverage.lcov
0 commit comments