We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7ca73c + 7db1b66 commit 5c5437eCopy full SHA for 5c5437e
1 file changed
…_breast_screening/notifications/tests.py …/notifications/tests/test_mesh_client.pymanage_breast_screening/notifications/tests.py renamed to manage_breast_screening/notifications/tests/test_mesh_client.py
@@ -1,6 +1,7 @@
1
# Create your tests here.
2
3
4
+import pytest
5
from mesh_client import MeshClient
6
7
base_uri = "http://localhost:8700" # Replace with your actual base URI
@@ -9,6 +10,9 @@
9
10
_SHARED_KEY = "Testkey"
11
12
13
+@pytest.mark.skip(
14
+ reason="This test depends on mesh-sandbox running in another container"
15
+)
16
def test_get_file():
17
with MeshClient(
18
url=base_uri,
0 commit comments