From b7df94b8a419f7ed949421d22896286dc1b15233 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Wed, 25 Oct 2017 11:42:19 -0700 Subject: Mark known slow tests as 'slow' pytest marker, and skip them by default --- tests/util.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/util.py') 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 -- cgit v1.2.3