We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
FakeBackend
1 parent 1e7c10f commit 6b6efc7Copy full SHA for 6b6efc7
test/utils/base.py
@@ -156,6 +156,14 @@ def setUpClass(cls):
156
module="qiskit_aer",
157
)
158
159
+ # Safe to remove once `FakeBackend` is removed (2.0)
160
+ warnings.filterwarnings(
161
+ "ignore", # If "default", it floods the CI output
162
+ category=DeprecationWarning,
163
+ message=r".*from_backend using V1 based backend is deprecated as of Aer 0.15*",
164
+ module="qiskit.providers.fake_provider.fake_backend",
165
+ )
166
+
167
allow_DeprecationWarning_message = [
168
r"The property ``qiskit\.circuit\.bit\.Bit\.(register|index)`` is deprecated.*",
169
]
0 commit comments