pytest session with zeromq transport and pycryptodome
(session, coverage)
| 854 | @nox.session(python=_PYTHON_VERSIONS, name="test-pycryptodome") |
| 855 | @nox.parametrize("coverage", [False, True]) |
| 856 | def test_pycryptodome(session, coverage): |
| 857 | """ |
| 858 | pytest session with zeromq transport and pycryptodome |
| 859 | """ |
| 860 | session.notify( |
| 861 | find_session_runner( |
| 862 | session, |
| 863 | "test-parametrized", |
| 864 | session.python, |
| 865 | coverage=coverage, |
| 866 | crypto="pycryptodome", |
| 867 | transport="zeromq", |
| 868 | ) |
| 869 | ) |
| 870 | |
| 871 | |
| 872 | @nox.session(python=_PYTHON_VERSIONS, name="pytest-pycryptodome") |
nothing calls this directly
no test coverage detected