Skip to content

Commit

Permalink
CU-8694gzbn3: Add debug output when ANY tests to see where it may be …
Browse files Browse the repository at this point in the history
…stalling
  • Loading branch information
mart-r committed May 14, 2024
1 parent 03531da commit 12c519a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# TODO: REMOVE BELOW
import unittest
from tests.stats.test_kfold import debug_print_test_names


@debug_print_test_names
class DebugTestCase(unittest.TestCase):
pass


# Override unittest.TestCase with DebugTestCase
unittest.TestCase = DebugTestCase
# TODO: REMOVE ABOVE

0 comments on commit 12c519a

Please sign in to comment.