Skip to content

Commit c4098e1

Browse files
committed
debugging
1 parent 4346ef6 commit c4098e1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/framework/test_framework.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@
3838
class TestFramework(QiskitExperimentsTestCase):
3939
"""Test Base Experiment"""
4040

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+
4148
def test_metadata(self):
4249
"""Test the metadata of a basic experiment."""
4350
backend = FakeBackend()

0 commit comments

Comments
 (0)