We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72504a3 commit 8bc5f5dCopy full SHA for 8bc5f5d
1 file changed
tests/test_oci_client.py
@@ -33,6 +33,11 @@
33
fastavro_stub.writer = lambda *args, **kwargs: None
34
sys.modules["fastavro"] = fastavro_stub
35
36
+if "httpx_sse" not in sys.modules:
37
+ httpx_sse_stub = types.ModuleType("httpx_sse")
38
+ httpx_sse_stub.connect_sse = lambda *args, **kwargs: None
39
+ sys.modules["httpx_sse"] = httpx_sse_stub
40
+
41
42
@unittest.skipIf(os.getenv("TEST_OCI") is None, "TEST_OCI not set")
43
class TestOciClient(unittest.TestCase):
0 commit comments