summaryrefslogtreecommitdiff
path: root/test/requirements.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/requirements.py')
-rw-r--r--test/requirements.py14
1 files changed, 2 insertions, 12 deletions
diff --git a/test/requirements.py b/test/requirements.py
index 24984b062..e8705d145 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -18,7 +18,8 @@ from sqlalchemy.testing.exclusions import \
succeeds_if,\
SpecPredicate,\
against,\
- LambdaPredicate
+ LambdaPredicate,\
+ requires_tag
def no_support(db, reason):
return SpecPredicate(db, description=reason)
@@ -745,17 +746,6 @@ class DefaultRequirements(SuiteRequirements):
"Not supported on MySQL + Windows"
)
- @property
- def threading_with_mock(self):
- """Mark tests that use threading and mock at the same time - stability
- issues have been observed with coverage + python 3.3
-
- """
- return skip_if(
- lambda config: util.py3k and
- config.options.has_coverage,
- "Stability issues with coverage + py3k"
- )
@property
def selectone(self):