(session: nox.Session)
| 26 | |
| 27 | @nox.session |
| 28 | def mypy(session: nox.Session) -> None: |
| 29 | session.install("mypy") |
| 30 | session.install(".[tests]") |
| 31 | |
| 32 | session.run("mypy", "tests/") |
| 33 | |
| 34 | |
| 35 | @nox.session |
nothing calls this directly
no outgoing calls
no test coverage detected