From: Mike Bayer Date: Thu, 9 Oct 2025 19:56:25 +0000 (-0400) Subject: mark more GC sensitive tests as not open for github X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0486e6eaf878568a1c3f53189a876cccf279fcdc;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git mark more GC sensitive tests as not open for github Change-Id: Ib73ec54e4ed7ef2d8911bfe8ee7a719022c6cddd --- diff --git a/test/orm/test_hasparent.py b/test/orm/test_hasparent.py index 72c90b6d5c..6332a09f4c 100644 --- a/test/orm/test_hasparent.py +++ b/test/orm/test_hasparent.py @@ -107,6 +107,7 @@ class ParentRemovalTest(fixtures.MappedTest): self._assert_not_hasparent(a1) + @testing.add_to_marker.gc_intensive @testing.requires.predictable_gc def test_stale_state_positive_gc(self): User = self.classes.User @@ -121,6 +122,7 @@ class ParentRemovalTest(fixtures.MappedTest): self._assert_not_hasparent(a1) + @testing.add_to_marker.gc_intensive @testing.requires.updateable_autoincrement_pks @testing.requires.predictable_gc def test_stale_state_positive_pk_change(self): @@ -167,6 +169,8 @@ class ParentRemovalTest(fixtures.MappedTest): self._assert_not_hasparent(a1) + @testing.add_to_marker.gc_intensive + @testing.requires.predictable_gc def test_stale_state_negative_child_expired(self): """illustrate the current behavior of expiration on the child. @@ -204,6 +208,7 @@ class ParentRemovalTest(fixtures.MappedTest): self._assert_not_hasparent(a1) # self._assert_hasparent(a1) + @testing.add_to_marker.gc_intensive @testing.requires.predictable_gc def test_stale_state_negative(self): User = self.classes.User