python3Packages.behave: disable broken feature test

features/tags.help.feature fails due to a formatting change in stdout. Disabled.
This commit is contained in:
Sarah Clark
2026-03-02 17:23:58 -08:00
parent 5890806f6b
commit 0f0bc6aff0
@@ -67,8 +67,11 @@ buildPythonPackage rec {
"test_step_decorator_async_run_until_complete"
];
# -e disables tags.help.feature from being executed (due to stdout formatting differences)
postCheck = ''
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' features/
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' \
-e tags.help.feature \
features/
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' tools/test-features/
${python.interpreter} bin/behave -f progress3 --stop --tags='~@xfail' issue.features/
'';