(self)
| 138 | |
| 139 | class TestPatchDuckDB(TestCase): |
| 140 | def setUp(self): |
| 141 | try: |
| 142 | import duckdb # noqa |
| 143 | except ImportError: |
| 144 | raise SkipTest('DuckDB not available') |
| 145 | import hvplot.duckdb # noqa |
| 146 | |
| 147 | def test_duckdb_relation_patched(self): |
| 148 | import duckdb |
nothing calls this directly
no outgoing calls
no test coverage detected