8000
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 f5d6071 commit f6a6610Copy full SHA for f6a6610
CONTRIBUTING.md
@@ -177,6 +177,17 @@ Now you can invoke the integration test suite as follows:
177
pytest integration/ --cert path/to/service_acct.json --apikey path/to/apikey.txt
178
```
179
180
+### Test Coverage
181
+
182
+To review the test coverage, run `pytest` with the `--cov` flag. To view a detailed line by line
183
+coverage, use
184
+```bash
185
+pytest --cov --cov-report html
186
+```
187
+and point your browser to
188
+`file:///<dir>/htmlcov/index.html` (where `dir` is the location from which the report was created).
189
190
191
### Testing in Different Environments
192
193
Sometimes we want to run unit tests in multiple environments (e.g. different Python versions), and
0 commit comments