We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5985bd commit 4039885Copy full SHA for 4039885
clients/python/test/test_osparc/test_solvers_api.py
@@ -0,0 +1,13 @@
1
+import pytest
2
+from pytest_mock import MockerFixture
3
+from osparc import JobMetadata
4
+from faker import Faker
5
+
6
7
+@pytest.fixture
8
+def job_metadata(faker: Faker):
9
+ JobMetadata(job_id=faker.uuid4(), metadata={"int": 2})
10
11
12
+def test_job_metadata_serialization(mocker: MockerFixture):
13
+ pass
0 commit comments