Run the packaging tests.
(session: nox.Session)
| 53 | |
| 54 | @nox.session |
| 55 | def tests_packaging(session: nox.Session) -> None: |
| 56 | """ |
| 57 | Run the packaging tests. |
| 58 | """ |
| 59 | |
| 60 | session.install("-r", "tests/requirements.txt", "pip") |
| 61 | session.run("pytest", "tests/extra_python_package", *session.posargs) |
| 62 | |
| 63 | |
| 64 | @nox.session(reuse_venv=True, default=False) |