(request)
| 35 | |
| 36 | @pytest.fixture() |
| 37 | def endpoint(request): |
| 38 | endpoint_name = request.config.getoption("--endpoint-name") |
| 39 | |
| 40 | try: |
| 41 | return get_endpoint(endpoint_name) |
| 42 | except FileNotFoundError as e: |
| 43 | pytest.skip( |
| 44 | f"Skipping scenario test because endpoints file is missing: {str(e)}" |
| 45 | ) |
| 46 | |
| 47 | |
| 48 | @pytest.fixture() |
nothing calls this directly
no test coverage detected