avocado-framework / avocado

Avocado is a set of tools and libraries to help with automated testing. One can call it a test framework with benefits. Native tests are written in Python and they follow the unittest pattern, but any executable can serve as a test.
https://avocado-framework.github.io/
Other
345 stars 343 forks source link

MarkupSafe fix #6040

Closed richtja closed 1 month ago

richtja commented 1 month ago

This adds markupsafe<3.0.0 requirements to html plugin, because markupsafe-3.0.0 can't be installed with older versions of setuptools on RHEL9 and other systems because of CCompilerError.

Reference: https://github.com/avocado-framework/avocado/issues/6038 Signed-off-by: Jan Richter jarichte@redhat.com


We have the same issue in our CI and this PR should fix it.