From 00d329906f907b26af064ba797e0bfad76454db1 Mon Sep 17 00:00:00 2001 From: Sage Abdullah Date: Fri, 21 Jul 2023 10:41:06 +0100 Subject: [PATCH] Add tblib to testing dependencies Needed to get better tracebacks when running tests in parallel. --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 03b2d4855d..7919dbbfe9 100755 --- a/setup.py +++ b/setup.py @@ -60,10 +60,12 @@ testing_extras = [ "curlylint==0.13.1", # For template indenting "djhtml==1.5.2", - # for validating string formats in .po translation files + # For validating string formats in .po translation files "polib>=1.1,<2.0", # For wagtail.test.utils.wagtail_factories (used for streamfield migration toolkit) "factory-boy>=3.2", + # For running tests in parallel + "tblib>=2.0,<3.0", ] # Documentation dependencies