-
Notifications
You must be signed in to change notification settings - Fork 235
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests: switch from Fedora 40 to Fedora 41
- Loading branch information
Showing
5 changed files
with
28 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,24 @@ | ||
Feature: Mock is able to work with dnf4 chroots | ||
|
||
@dnf4 | ||
@dnf4 @no-bootstrap | ||
Scenario: Building a DNF4 chroot without bootstrap chroot | ||
Given an unique mock namespace | ||
And mock is always executed with "--no-bootstrap-chroot" | ||
And mock is always executed with "--no-bootstrap-chroot --config-opts=dnf_warning=False" | ||
When an online source RPM is rebuilt against centos-stream+epel-9-x86_64 | ||
Then the build succeeds | ||
|
||
@dnf4 @no-bootstrap-image | ||
Scenario: Building in DNF4 chroot with dnf4 on host, without bootstrap image | ||
Given an unique mock namespace | ||
And the python3-dnf package is installed on host | ||
And mock is always executed with "--no-bootstrap-image" | ||
When an online source RPM is rebuilt against centos-stream+epel-9-x86_64 | ||
Then the build succeeds | ||
|
||
@dnf4 @no-bootstrap-image @with-dnf4 | ||
Scenario: Building a DNF4 chroot without dnf4 on host, without bootstrap image | ||
Given an unique mock namespace | ||
And the python3-dnf package not installed on host | ||
And mock is always executed with "--no-bootstrap-image" | ||
When an online source RPM is rebuilt against centos-stream+epel-9-x86_64 | ||
Then the build succeeds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
Feature: Mock 3.6+ should be able to work with DNF5 | ||
Feature: Mock correctly works with DNF5 | ||
|
||
@dnf5 | ||
Scenario: Building in Rawhide with DNF5 but DNF4 on host | ||
Given mock is always executed with "--config-opts package_manager=dnf5" | ||
And the dnf5 package not installed on host | ||
@dnf5 @no-bootstrap | ||
Scenario: Building in Rawhide with DNF5, without bootstrap chroot | ||
Given mock is always executed with "--no-bootstrap-chroot" | ||
And an unique mock namespace | ||
When an online source RPM is rebuilt | ||
Then the build succeeds | ||
|
||
@dnf5 | ||
@dnf5 @no-bootstrap-image | ||
Scenario: Building in Rawhide with DNF5 with DNF5 on host | ||
Given mock is always executed with "--config-opts package_manager=dnf5" | ||
And the dnf5 package is installed on host | ||
Given mock is always executed with "--no-bootstrap-image" | ||
And an unique mock namespace | ||
When an online source RPM is rebuilt | ||
Then the build succeeds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters