We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4346ef6 commit c4098e1Copy full SHA for c4098e1
test/framework/test_framework.py
@@ -38,6 +38,13 @@
38
class TestFramework(QiskitExperimentsTestCase):
39
"""Test Base Experiment"""
40
41
+ def test_environment(self):
42
+ import os
43
+ import sys
44
+ print("QISKIT_PARALLEL:", os.environ["QISKIT_PARALLEL"], file=sys.stderr)
45
+ print("OMP_NUM_THREADS:", os.environ["OMP_NUM_THREADS"], file=sys.stderr)
46
+ print("RAYON_NUM_THREADS:", os.environ["RAYON_NUM_THREADS"], file=sys.stderr)
47
+
48
def test_metadata(self):
49
"""Test the metadata of a basic experiment."""
50
backend = FakeBackend()
0 commit comments