summaryrefslogtreecommitdiff
path: root/test/requirements.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2014-07-27 18:46:20 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2014-07-27 18:46:20 -0400
commit54592942c4a9c3d6d891519082555f8081026445 (patch)
tree29abeff4dee0960284e03558ff464ffbf41cc784 /test/requirements.py
parent35551841c522d8eb20f8e20243a5510de9d95dfc (diff)
downloadsqlalchemy-54592942c4a9c3d6d891519082555f8081026445.tar.gz
- add support for tags, including include/exclude support.
simplify tox again now that we can exclude tests more easily
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):