pytest session with zeromq transport and default crypto
(session, coverage)
| 632 | @nox.session(python=_PYTHON_VERSIONS) |
| 633 | @nox.parametrize("coverage", [False, True]) |
| 634 | def test(session, coverage): |
| 635 | """ |
| 636 | pytest session with zeromq transport and default crypto |
| 637 | """ |
| 638 | session.notify( |
| 639 | find_session_runner( |
| 640 | session, |
| 641 | "test-parametrized", |
| 642 | session.python, |
| 643 | coverage=coverage, |
| 644 | crypto=None, |
| 645 | transport="zeromq", |
| 646 | ) |
| 647 | ) |
| 648 | |
| 649 | |
| 650 | @nox.session(python=_PYTHON_VERSIONS) |
nothing calls this directly
no test coverage detected