def e2e()

in noxfile.py [0:0]


def e2e(session):
    """Run the e2e test suite."""
    install_tests_profile(session)

    session.run(
        "pytest",
        "--e2e",
        str(Path("tests/e2e")),
        *session.posargs,
    )