Changes between Initial Version and Version 1 of Ticket #36491
- Timestamp:
- Jul 4, 2025, 3:32:42 AM (2 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36491 – Description
initial v1 143 143 144 144 Similar issue reported here: https://code.djangoproject.com/ticket/35794 145 146 Edit: 147 148 issue also happens with exceptions inside setUpClass (--parallel --buffer) 149 150 151 {{{ 152 class AbortingTest(TestCase): 153 @classmethod 154 def setUpClass(cls): 155 raise RuntimeError("Boo!") 156 157 def test_pass(self): 158 pass 159 160 }}}