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 b9bdc5a commit 20f83e5Copy full SHA for 20f83e5
test/utils/base.py
@@ -94,6 +94,13 @@ def setUpClass(cls):
94
warnings.filterwarnings("error", category=DeprecationWarning)
95
warnings.filterwarnings("error", category=QiskitWarning)
96
97
+ warnings.filterwarnings(
98
+ "ignore",
99
+ category=RuntimeWarning,
100
+ message="Aer not found using BasicSimulator and no noise",
101
+ module="qiskit.providers.fake_provider.generic_backend_v2",
102
+ )
103
+
104
# Numpy 2 made a few new modules private, and have warnings that trigger if you try to
105
# access attributes that _would_ have existed. Unfortunately, Python's `warnings` module
106
# adds a field called `__warningregistry__` to any module that triggers a warning, and
0 commit comments