summaryrefslogtreecommitdiff
path: root/test/requirements.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/requirements.py')
-rw-r--r--test/requirements.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/test/requirements.py b/test/requirements.py
index fb347187e..b0c072898 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -193,7 +193,6 @@ class DefaultRequirements(SuiteRequirements):
"""Target database must support savepoints."""
return skip_if([
- "access",
"sqlite",
"sybase",
("mysql", "<", (5, 0, 3)),
@@ -215,7 +214,7 @@ class DefaultRequirements(SuiteRequirements):
@property
def update_nowait(self):
"""Target database must support SELECT...FOR UPDATE NOWAIT"""
- return skip_if(["access", "firebird", "mssql", "mysql", "sqlite", "sybase"],
+ return skip_if(["firebird", "mssql", "mysql", "sqlite", "sybase"],
"no FOR UPDATE NOWAIT support"
)
@@ -259,7 +258,6 @@ class DefaultRequirements(SuiteRequirements):
"""Target database must support two-phase transactions."""
return skip_if([
- no_support('access', 'two-phase xact not supported by database'),
no_support('firebird', 'no SA implementation'),
no_support('maxdb', 'two-phase xact not supported by database'),
no_support('mssql', 'two-phase xact not supported by drivers'),