alef-e2e 0.15.7

Fixture-driven e2e test generator for alef
Documentation
1
2
3
4
5
6
7
8
9
10
{#- Python HTTP 101 (WebSocket) skip test template

   Context variables:
   - fn_name: test function name
   - desc_with_period: fixture description with ending period
#}
@pytest.mark.skip(reason="HTTP 101 WebSocket upgrade cannot be tested via urllib")
def test_{{ fn_name }}(mock_server: str) -> None:
    """{{ desc_with_period }}"""
    ...