pytest session with zeromq transport and m2crypto
(session, coverage)
| 743 | @nox.session(python=_PYTHON_VERSIONS, name="test-m2crypto") |
| 744 | @nox.parametrize("coverage", [False, True]) |
| 745 | def test_m2crypto(session, coverage): |
| 746 | """ |
| 747 | pytest session with zeromq transport and m2crypto |
| 748 | """ |
| 749 | session.notify( |
| 750 | find_session_runner( |
| 751 | session, |
| 752 | "test-parametrized", |
| 753 | session.python, |
| 754 | coverage=coverage, |
| 755 | crypto="m2crypto", |
| 756 | transport="zeromq", |
| 757 | ) |
| 758 | ) |
| 759 | |
| 760 | |
| 761 | @nox.session(python=_PYTHON_VERSIONS, name="pytest-m2crypto") |
nothing calls this directly
no test coverage detected