diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-25 11:42:19 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-25 11:42:19 -0700 |
commit | b7df94b8a419f7ed949421d22896286dc1b15233 (patch) | |
tree | 254d67fa37996ebc76f33430763dce37a3b262b1 /tests/util.py | |
parent | 4f85487b02bd7fc845f1c0726b9ec2a7703d7631 (diff) |
Mark known slow tests as 'slow' pytest marker, and skip them by default
Diffstat (limited to 'tests/util.py')
-rw-r--r-- | tests/util.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/util.py b/tests/util.py index 051a36ba..4ca02374 100644 --- a/tests/util.py +++ b/tests/util.py @@ -22,3 +22,6 @@ def needs_builtin(name): """ reason = "Test requires a builtin '{}'".format(name) return pytest.mark.skipif(not hasattr(builtins, name), reason=reason) + + +slow = pytest.mark.slow |