(session: nox.Session)
| 34 | |
| 35 | @nox.session |
| 36 | def packaging(session: nox.Session) -> None: |
| 37 | session.install("setuptools-rust", "check-manifest", "readme_renderer") |
| 38 | |
| 39 | session.run("check-manifest") |
| 40 | session.run( |
| 41 | "python3", "-m", "readme_renderer", "README.rst", "-o", "/dev/null" |
| 42 | ) |
nothing calls this directly
no outgoing calls
no test coverage detected