diff --git a/test/python/primitives/test_backend_estimator.py b/test/python/primitives/test_backend_estimator.py index e33affce44bb..659765ec89b5 100644 --- a/test/python/primitives/test_backend_estimator.py +++ b/test/python/primitives/test_backend_estimator.py @@ -408,7 +408,6 @@ def test_layout(self, backend): else: self.assertEqual(value, -1) - @unittest.skip("Skipped until Qiskit/qiskit-aer#2023 is released.") @unittest.skipUnless(optionals.HAS_AER, "qiskit-aer is required to run this test") def test_circuit_with_measurement(self): """Test estimator with a dynamic circuit""" @@ -427,7 +426,6 @@ def test_circuit_with_measurement(self): result = estimator.run(bell, observable).result() self.assertAlmostEqual(result.values[0], 1, places=1) - @unittest.skip("Skipped until Qiskit/qiskit-aer#2023 is released.") @unittest.skipUnless(optionals.HAS_AER, "qiskit-aer is required to run this test") def test_dynamic_circuit(self): """Test estimator with a dynamic circuit""" diff --git a/test/python/primitives/test_backend_sampler.py b/test/python/primitives/test_backend_sampler.py index ac3d28f3b54a..156f0b48fefc 100644 --- a/test/python/primitives/test_backend_sampler.py +++ b/test/python/primitives/test_backend_sampler.py @@ -338,7 +338,6 @@ def test_primitive_job_size_limit_backend_v1(self): self.assertDictAlmostEqual(result.quasi_dists[0], {0: 1}, 0.1) self.assertDictAlmostEqual(result.quasi_dists[1], {1: 1}, 0.1) - @unittest.skip("Skipped until Qiskit/qiskit-aer#2023 is released.") @unittest.skipUnless(optionals.HAS_AER, "qiskit-aer is required to run this test") def test_circuit_with_dynamic_circuit(self): """Test BackendSampler with QuantumCircuit with a dynamic circuit""" diff --git a/test/python/providers/fake_provider/test_fake_backends.py b/test/python/providers/fake_provider/test_fake_backends.py index b4f116c91b88..da334b326919 100644 --- a/test/python/providers/fake_provider/test_fake_backends.py +++ b/test/python/providers/fake_provider/test_fake_backends.py @@ -35,7 +35,6 @@ def get_test_circuit(): class FakeBackendsTest(QiskitTestCase): """fake backends test.""" - @unittest.skip("Skipped until Qiskit/qiskit-aer#2023 is released.") @unittest.skipUnless(optionals.HAS_AER, "qiskit-aer is required to run this test") def test_fake_backends_get_kwargs(self): """Fake backends honor kwargs passed.""" @@ -50,7 +49,6 @@ def test_fake_backends_get_kwargs(self): self.assertEqual(sum(raw_counts.values()), 1000) - @unittest.skip("Skipped until Qiskit/qiskit-aer#2023 is released.") @unittest.skipUnless(optionals.HAS_AER, "qiskit-aer is required to run this test") def test_fake_backend_v2_noise_model_always_present(self): """Test that FakeBackendV2 instances always run with noise.""" diff --git a/test/python/providers/test_fake_backends.py b/test/python/providers/test_fake_backends.py index 1a3920652d7c..21a18e635d89 100644 --- a/test/python/providers/test_fake_backends.py +++ b/test/python/providers/test_fake_backends.py @@ -101,10 +101,7 @@ def setUpClass(cls): ) def test_circuit_on_fake_backend_v2(self, backend, optimization_level): if not optionals.HAS_AER and backend.num_qubits > 20: - self.skipTest("Skipping until Qiskit/qiskit-aer#2023 is released.") self.skipTest("Unable to run fake_backend %s without qiskit-aer" % backend.backend_name) - else: - print(backend.num_qubits) job = execute( self.circuit, backend, @@ -125,7 +122,6 @@ def test_circuit_on_fake_backend_v2(self, backend, optimization_level): ) def test_circuit_on_fake_backend(self, backend, optimization_level): if not optionals.HAS_AER and backend.configuration().num_qubits > 20: - self.skipTest("Skipping until Qiskit/qiskit-aer#2023 is released.") self.skipTest( "Unable to run fake_backend %s without qiskit-aer" % backend.configuration().backend_name @@ -246,7 +242,6 @@ def test_non_cx_tests(self): backend = FakeSherbrooke() self.assertIsInstance(backend.target.operation_from_name("ecr"), ECRGate) - @unittest.skip("Skipped until Qiskit/qiskit-aer#2023 is released.") @unittest.skipUnless(optionals.HAS_AER, "Aer required for this test") def test_converter_simulator(self): class MCSXGate(ControlledGate):