Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[6.13.z][Combined Jenkins Ask] Capsule testing for sanity (#15948) #16422

Open
wants to merge 2 commits into
base: 6.13.z
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pytest_fixtures/core/sat_cap_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def sat_ready_rhel(request):

@pytest.fixture
def cap_ready_rhel():
rhel_version = Version(settings.capsule.version.release)
rhel_version = Version(settings.capsule.version.rhel_version)
deploy_args = {
'deploy_rhel_version': rhel_version.base_version,
'deploy_flavor': settings.flavors.default,
Expand Down
4 changes: 2 additions & 2 deletions tests/foreman/installer/test_installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1419,8 +1419,6 @@ def test_installer_options_and_sections(filter):


@pytest.mark.tier1
@pytest.mark.build_sanity
@pytest.mark.first_sanity
@pytest.mark.pit_server
@pytest.mark.parametrize(
"installer_satellite", [settings.server.version.rhel_version], indirect=True
Expand Down Expand Up @@ -1456,6 +1454,8 @@ def test_satellite_installation(installer_satellite):
@pytest.mark.e2e
@pytest.mark.tier1
@pytest.mark.pit_server
@pytest.mark.build_sanity
@pytest.mark.first_sanity
@pytest.mark.parametrize(
"installer_satellite", [settings.server.version.rhel_version], indirect=True
)
Expand Down
Loading