We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ef371a commit d14eb9cCopy full SHA for d14eb9c
test/utils/decorators.py
@@ -33,7 +33,7 @@ def slow_test(func):
33
34
@functools.wraps(func)
35
def _wrapper(*args, **kwargs):
36
- if "run_slow" in os.environ.get("QISKIT_TESTS", ""):
+ if "run_slow" not in os.environ.get("QISKIT_TESTS", ""):
37
raise unittest.SkipTest("Skipping slow tests")
38
return func(*args, **kwargs)
39
0 commit comments