]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
mark more GC sensitive tests as not open for github
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Oct 2025 19:56:25 +0000 (15:56 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 9 Oct 2025 19:56:25 +0000 (15:56 -0400)
Change-Id: Ib73ec54e4ed7ef2d8911bfe8ee7a719022c6cddd

test/orm/test_hasparent.py

index 72c90b6d5c9214850ab50e321e690ddecb79e091..6332a09f4c314524a770eee9538e77038ec2c569 100644 (file)
@@ -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