Skip to content

Commit 75c026a

Browse files
Merge pull request #1317 from qiboteam/disabletorchseed
Disable macos tests for pytorch circuit repetition
2 parents 036e882 + b55dc7f commit 75c026a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/test_models_circuit_features.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""Test how features defined in :class:`qibo.models.circuit.Circuit` work during circuit execution."""
22

3+
import sys
34
from collections import Counter
45

56
import numpy as np
@@ -307,6 +308,7 @@ def test_repeated_execute_with_pauli_noise(backend):
307308
)
308309

309310

311+
@pytest.mark.skipif(sys.platform == "darwin", reason="Mac tests")
310312
@pytest.mark.parametrize("nqubits", [1, 2])
311313
def test_repeated_execute_probs_and_freqs(backend, nqubits):
312314
circuit = Circuit(nqubits)

0 commit comments

Comments
 (0)