From 0486e6eaf878568a1c3f53189a876cccf279fcdc Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 9 Oct 2025 15:56:25 -0400 Subject: [PATCH] mark more GC sensitive tests as not open for github Change-Id: Ib73ec54e4ed7ef2d8911bfe8ee7a719022c6cddd --- test/orm/test_hasparent.py | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.47.3