0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-21 18:09:02 +01:00

Add tblib to testing dependencies

Needed to get better tracebacks when running tests in parallel.
This commit is contained in:
Sage Abdullah 2023-07-21 10:41:06 +01:00
parent fbde6118b7
commit 00d329906f
No known key found for this signature in database
GPG Key ID: EB1A33CC51CC0217

View File

@ -60,10 +60,12 @@ testing_extras = [
"curlylint==0.13.1", "curlylint==0.13.1",
# For template indenting # For template indenting
"djhtml==1.5.2", "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", "polib>=1.1,<2.0",
# For wagtail.test.utils.wagtail_factories (used for streamfield migration toolkit) # For wagtail.test.utils.wagtail_factories (used for streamfield migration toolkit)
"factory-boy>=3.2", "factory-boy>=3.2",
# For running tests in parallel
"tblib>=2.0,<3.0",
] ]
# Documentation dependencies # Documentation dependencies