diff --git a/scaleway_qaas_client/v1alpha1/job_payload/models.py b/scaleway_qaas_client/v1alpha1/job_payload/models.py index 0894f30..2edafd5 100644 --- a/scaleway_qaas_client/v1alpha1/job_payload/models.py +++ b/scaleway_qaas_client/v1alpha1/job_payload/models.py @@ -36,13 +36,14 @@ class QaaSCircuitData: class QaaSNoiseModelSerializationFormat(Enum): UNKOWN_CIRCUIT_SERIALIZATION = 0 JSON = 1 + AER_COMPRESSED_JSON = 2 @dataclass_json @dataclass class QaaSNoiseModelData: serialization_format: QaaSNoiseModelSerializationFormat - noise_model_serialization: str + noise_model_serialization: bytes @dataclass_json diff --git a/setup.py b/setup.py index d63b27d..b80bf47 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name="scaleway_qaas_client", - version="0.1.22", + version="0.1.23", project_urls={ "Documentation": "https://www.scaleway.com/en/quantum-as-a-service/", "Source": "https://github.com/scaleway/scaleway-qaas-client-pythom", diff --git a/tests/test_api.py b/tests/test_api.py index 9e02a93..4c4e73a 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -197,25 +197,6 @@ def test_create_session_same_deduplication_id(): client.delete_session(session.id) -def test_list_applications(): - client = _get_client() - - applications = client.list_applications() - - assert len(applications) > 0 - - -def test_list_applications_by_name(): - client = _get_client() - - applications = client.list_applications(name=_TEST_APPLICATION_NAME) - - assert len(applications) > 0 - - for application in applications: - assert application.name == _TEST_APPLICATION_NAME - - def test_run_process(): client = _get_client()