Skip to content

Commit

Permalink
disable QCI tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Yi Gu committed Nov 8, 2024
1 parent 4610c91 commit d4f69d7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions azure-quantum/tests/unit/test_qiskit.py
Original file line number Diff line number Diff line change
Expand Up @@ -1634,8 +1634,8 @@ def test_qiskit_get_rigetti_qpu_targets(self):
self.assertEqual("qir.v1", config.azure["input_data_format"])
self.assertEqual(MICROSOFT_OUTPUT_DATA_FORMAT_V2, backend._get_output_data_format())

@pytest.mark.qci
@pytest.mark.live_test
#@pytest.mark.qci
#@pytest.mark.live_test
def test_qiskit_submit_to_qci(self):
workspace = self.create_workspace()
provider = AzureQuantumProvider(workspace=workspace)
Expand Down Expand Up @@ -1677,8 +1677,8 @@ def test_qiskit_submit_to_qci(self):
counts = result.get_counts()
self.assertEqual(counts, result.data()["counts"])

@pytest.mark.qci
@pytest.mark.live_test
#@pytest.mark.qci
#@pytest.mark.live_test
def test_qiskit_submit_to_qci_with_default_shots(self):
workspace = self.create_workspace()
provider = AzureQuantumProvider(workspace=workspace)
Expand All @@ -1689,8 +1689,8 @@ def test_qiskit_submit_to_qci_with_default_shots(self):
self._qiskit_wait_to_complete(qiskit_job, provider)
self.assertEqual(qiskit_job._azure_job.details.input_params["shots"], 500)

@pytest.mark.qci
@pytest.mark.live_test
#@pytest.mark.qci
#@pytest.mark.live_test
def test_qiskit_submit_to_qci_with_deprecated_count_param(self):
"""
Verify that a warning message is printed when the 'count' option is specified.
Expand All @@ -1711,8 +1711,8 @@ def test_qiskit_submit_to_qci_with_deprecated_count_param(self):
self._qiskit_wait_to_complete(qiskit_job, provider)
self.assertEqual(qiskit_job._azure_job.details.input_params["shots"], shots)

@pytest.mark.qci
@pytest.mark.live_test
#@pytest.mark.qci
#@pytest.mark.live_test
def test_qiskit_get_qci_qpu_targets(self):
workspace = self.create_workspace()
provider = AzureQuantumProvider(workspace=workspace)
Expand Down

0 comments on commit d4f69d7

Please sign in to comment.