blob: be32aeee4160a0ef15d26d98f068236fc64bbb21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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):
|