Run the test suite with pytest.
(session: Session)
| 34 | |
| 35 | @nox.session(python=VERSIONS) # type: ignore[misc] |
| 36 | def tests(session: Session) -> None: |
| 37 | """Run the test suite with pytest.""" |
| 38 | print("CWD", os.getcwd()) |
| 39 | _install_prqlc(session) |
| 40 | session.run("pytest", str(Path("python", "tests"))) |
| 41 | |
| 42 | |
| 43 | @nox.session(python=VERSIONS) # type: ignore[misc] |
nothing calls this directly
no test coverage detected