Skip to content

Commit c2aa65e

Browse files
zzzeekGerrit Code Review
authored andcommitted
Merge "add sane_rowcount to SimpleUpdateDeleteTest" into main
2 parents 1eeded1 + f3a65eb commit c2aa65e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.. change::
2+
:tags: bug, tests
3+
:tickets: 7919
4+
5+
For third party dialects, repaired a missing requirement for the
6+
``SimpleUpdateDeleteTest`` suite test which was not checking for a working
7+
"rowcount" function on the target dialect.
8+

lib/sqlalchemy/testing/suite/test_update_delete.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
class SimpleUpdateDeleteTest(fixtures.TablesTest):
1010
run_deletes = "each"
11+
__requires__ = ("sane_rowcount",)
1112
__backend__ = True
1213

1314
@classmethod

0 commit comments

Comments
 (0)