(session)
| 42 | |
| 43 | @nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13"]) |
| 44 | def tests(session): |
| 45 | session.install("pytest") |
| 46 | build_and_check_dists(session) |
| 47 | |
| 48 | generated_files = os.listdir("dist/") |
| 49 | generated_sdist = os.path.join("dist/", generated_files[1]) |
| 50 | |
| 51 | session.install(generated_sdist) |
| 52 | |
| 53 | session.run("py.test", "tests/", *session.posargs) |
nothing calls this directly
no test coverage detected