Skip to content

Commit f3a65eb

Browse files
committed
add sane_rowcount to SimpleUpdateDeleteTest
For third party dialects, repaired a missing requirement for the ``SimpleUpdateDeleteTest`` suite test which was not checking for a working "rowcount" function on the target dialect. Fixes: sqlalchemy#7919 Change-Id: I2bc68132131eb36c43b8dabec0fac86272e26df5
1 parent 952383f commit f3a65eb

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)