def pytest_argv()

in noxfile.py [0:0]


def pytest_argv():
    junit_xml = os.path.join(
        SOURCE_DIR, "junit", "elasticsearch-serverless-python-junit.xml"
    )
    return [
        "pytest",
        "--cov-report=term-missing",
        "--cov=elasticsearch_serverless",
        "--cov-config=setup.cfg",
        f"--junitxml={junit_xml}",
        "--log-level=debug",
        "-vv",
        "--cache-clear",
    ]