Changes between Initial Version and Version 1 of Ticket #36491


Ignore:
Timestamp:
Jul 4, 2025, 3:32:42 AM (2 months ago)
Author:
Rafael Carlos Soriano Marmol
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36491 – Description

    initial v1  
    143143
    144144Similar issue reported here: https://code.djangoproject.com/ticket/35794
     145
     146Edit:
     147
     148issue also happens with exceptions inside setUpClass (--parallel --buffer)
     149
     150
     151{{{
     152class AbortingTest(TestCase):
     153    @classmethod
     154    def setUpClass(cls):
     155        raise RuntimeError("Boo!")
     156
     157    def test_pass(self):
     158        pass
     159
     160}}}
Back to Top