(item)
| 67 | |
| 68 | |
| 69 | def pytest_runtest_setup(item): |
| 70 | # Note: not using Capabilities.has_pipeline() to allow running the tests |
| 71 | # with Psycopg 3.1. |
| 72 | if not psycopg.Pipeline.is_supported(): |
| 73 | for m in item.iter_markers(name="pipeline"): |
| 74 | pytest.skip("pipeline mode not supported") |
| 75 | |
| 76 | |
| 77 | def pytest_configure(config): |
nothing calls this directly
no test coverage detected