File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -57,10 +57,18 @@ commands =
57
57
58
58
[testenv:schemacheck]
59
59
deps =
60
- black
60
+ black>=21.8b0, <23.11
61
61
PyYAML
62
62
commands =
63
63
python -m sambacc.schema.tool
64
+ # The following env var is a workaround for running this testenv on fedora 39
65
+ # with python 3.12.1. As of approx. 2023-12-11 the ci started # to fail because
66
+ # of the multidict library (not even one of our direct dependencies) failing
67
+ # to install from source because we (intentionally) have no C compiler in the
68
+ # image. Try to remove this in a few weeks to see if wheel availability or
69
+ # whatever has been resolved.
70
+ setenv =
71
+ MULTIDICT_NO_EXTENSIONS =1
64
72
65
73
# this gitlint rule is not run by default.
66
74
# Run it manually with: tox -e gitlint
You can’t perform that action at this time.
0 commit comments