37a582
37a582
class Skipper:
37a582
    """Skip iso8601 and pretend tests
37a582
37a582
    RHEL buildroot doesn't have python-iso8601 and python-pretend. Skip
37a582
    all tests that use the excluded modules.
37a582
    """
37a582
37a582
    def parse_date(self, datestring):
37a582
        pytest.skip(f"iso8601 module is not available.")
37a582
37a582
    def stub(self, **kwargs):
37a582
        pytest.skip(f"pretend module is not available.")
37a582
37a582
    def raiser(self, exc):
37a582
        pytest.skip(f"pretend module is not available.")
37a582
37a582
37a582
import sys
37a582
37a582
sys.modules["iso8601"] = sys.modules["pretend"] = Skipper()
37a582