(self)
| 74 | |
| 75 | class TestPatchStreamz(TestCase): |
| 76 | def setUp(self): |
| 77 | if sys.version_info[:2] >= (3, 14): |
| 78 | raise SkipTest('streamz not compatible') |
| 79 | try: |
| 80 | import streamz # noqa |
| 81 | except ImportError: |
| 82 | raise SkipTest('streamz not available') |
| 83 | import hvplot.streamz # noqa |
| 84 | |
| 85 | def test_streamz_dataframe_patched(self): |
| 86 | from streamz.dataframe import Random |
nothing calls this directly
no outgoing calls
no test coverage detected