You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The easiest way to find out what parts of the code base are left uncovered, is to copy-paste and run the `python3 ...` command that will open the HTML report, so you can inspect it visually.
163
+
164
+
3. Before committing any changes (if you do not have `pre-commit` installed locally), run:
165
+
166
+
```bash
167
+
tox r -qq -e pre-commit
168
+
```
169
+
170
+
Make sure that all checks pass.
171
+
172
+
4. (Optional): If you want to limit the checks to MyPy only, you can run:
173
+
174
+
```bash
175
+
tox r -qq -e pre-commit -- mypy --all-files
176
+
```
177
+
178
+
Then copy-paste and run the `python3 ...` commands to inspect the strictest MyPy coverage reports visually.
179
+
180
+
5. (Optional): You can find all available `tox` environments by running:
0 commit comments