Skip to content

Commit

Permalink
test: disable the fedora iso test for now
Browse files Browse the repository at this point in the history
This commit disables the fedora ISO test for now. The download of
the RPMs tends to be very fragile, often mirrors are outdated or
broken and we get many 404 or 500 errors.

The real fix is of couse to switch to a librepo based downloading
in osbuild but for now we just disable this test so that we can
merge PRs again without having to retry multiple times :(
  • Loading branch information
mvo5 committed Dec 19, 2024
1 parent 8f3ca27 commit 541b4d1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/testcases.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ def gen_testcases(what): # pylint: disable=too-many-return-statements
return [TestCaseC9S(image="ami"), TestCaseFedora(image="ami")]
if what == "anaconda-iso":
return [
TestCaseFedora(image="anaconda-iso", sign=True),
#2024-12-19: disabled for now until the mirror situation becomes
# a bit more stable
#TestCaseFedora(image="anaconda-iso", sign=True),
TestCaseC9S(image="anaconda-iso"),
TestCaseC10S(image="anaconda-iso"),
]
Expand Down

0 comments on commit 541b4d1

Please sign in to comment.