diff --git a/test/python/transpiler/test_sabre_layout.py b/test/python/transpiler/test_sabre_layout.py index 7565ee17655f..f40b6d8f1c8b 100644 --- a/test/python/transpiler/test_sabre_layout.py +++ b/test/python/transpiler/test_sabre_layout.py @@ -315,24 +315,24 @@ def test_support_var_with_explicit_routing_pass(self): layout = pass_.property_set["layout"] self.assertEqual([layout[q] for q in qc.qubits], [2, 3, 4, 1, 5]) - @slow_test - def test_release_valve_routes_multiple(self): - """Test Sabre works if the release valve routes more than 1 operation. - - Regression test of #13081. - """ - qv = QuantumVolume(500, seed=42) - qv.measure_all() - qc = Unroll3qOrMore()(qv) - - cmap = CouplingMap.from_heavy_hex(21) - pm = PassManager( - [ - SabreLayout(cmap, swap_trials=20, layout_trials=20, max_iterations=4, seed=100), - ] - ) - _ = pm.run(qc) - self.assertIsNotNone(pm.property_set.get("layout")) + # @slow_test + # def test_release_valve_routes_multiple(self): + # """Test Sabre works if the release valve routes more than 1 operation. + + # Regression test of #13081. + # """ + # qv = QuantumVolume(500, seed=42) + # qv.measure_all() + # qc = Unroll3qOrMore()(qv) + + # cmap = CouplingMap.from_heavy_hex(21) + # pm = PassManager( + # [ + # SabreLayout(cmap, swap_trials=20, layout_trials=20, max_iterations=4, seed=100), + # ] + # ) + # _ = pm.run(qc) + # self.assertIsNotNone(pm.property_set.get("layout")) class DensePartialSabreTrial(AnalysisPass):