From cceeb5f95c2e6eb2b2b1ff2d179f1a67dac2839d Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Thu, 17 Aug 2023 10:18:21 +0800 Subject: [PATCH] Add some CI debugging help. --- testbed/tests/testbed.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/testbed/tests/testbed.py b/testbed/tests/testbed.py index 244294b5e4..cccb4e19c2 100644 --- a/testbed/tests/testbed.py +++ b/testbed/tests/testbed.py @@ -17,7 +17,9 @@ def run_tests(app, cov, args, report_coverage, run_slow): try: # Control the run speed of the test app. - app.run_slow = run_slow + # FIXME: Add this in to debug why apps are crashing in CI. + app.run_slow = True + # app.run_slow = run_slow project_path = Path(__file__).parent.parent os.chdir(project_path)