diff options
author | CoprDistGit <infra@openeuler.org> | 2025-03-21 17:37:41 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2025-03-21 17:37:42 +0000 |
commit | 133ef9d4cb72a5081fab588e821eee4a178afc7e (patch) | |
tree | 76779ef5ca00cab259eb516c4c44eef0b3048cc9 /fail_to_build_in_oe2403.patch | |
parent | c3bf05eae09a01b1153504b7e7de2b8c43a34eea (diff) |
automatic import of copr-backend
Diffstat (limited to 'fail_to_build_in_oe2403.patch')
-rw-r--r-- | fail_to_build_in_oe2403.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/fail_to_build_in_oe2403.patch b/fail_to_build_in_oe2403.patch new file mode 100644 index 0000000..be32aee --- /dev/null +++ b/fail_to_build_in_oe2403.patch @@ -0,0 +1,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): |