diff --git a/tests/test_modifyrepo.py b/backend/tests/test_modifyrepo.py index 330ff68f7..2c1bd0a66 100644 --- a/tests/test_modifyrepo.py +++ b/tests/test_modifyrepo.py @@ -431,7 +431,8 @@ def test_copr_repo_run_createrepo(self, popen, do_stat, chroot, database_option) "--workers", "8", "--general-compress-type=gz", "--update"] + additional_args @pytest.mark.skipif( - distro.id() == 'fedora' and int(distro.version()) >= 36, + (distro.id() == 'fedora' and int(distro.version()) >= 36) or + (distro.id() == 'openeuler' and float(distro.version()) >= 24.03), reason="createrepo_c dropped md5 checksum support" ) def test_copr_repo_el5(self, f_third_build):