summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/orm/test_relationships.py3
-rw-r--r--test/requirements.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/test/orm/test_relationships.py b/test/orm/test_relationships.py
index 42c554bc8..d953f479e 100644
--- a/test/orm/test_relationships.py
+++ b/test/orm/test_relationships.py
@@ -1083,7 +1083,8 @@ class FKsAsPksTest(fixtures.MappedTest):
"Dependency rule tried to blank-out "
"primary key column 'tableB.id' on instance ")
- @testing.fails_on_everything_except('sqlite', 'mysql')
+ @testing.fails_on_everything_except(
+ 'sqlite', testing.requires.mysql_non_strict)
def test_nullPKsOK_BtoA(self):
A, tableA = self.classes.A, self.tables.tableA
diff --git a/test/requirements.py b/test/requirements.py
index 7bc9f7dbe..a83b8b533 100644
--- a/test/requirements.py
+++ b/test/requirements.py
@@ -931,7 +931,7 @@ class DefaultRequirements(SuiteRequirements):
def mysql_non_strict(self):
def check(config):
row = config.db.execute("show variables like 'sql_mode'").first()
- return not row or "STRICT" not in row[1]
+ return not row or "STRICT_TRANS_TABLES" not in row[1]
return only_if(check)