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

Initial commit to test updated sat util url #12871

Closed
wants to merge 1 commit into from
Closed
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
6 changes: 5 additions & 1 deletion tests/foreman/ui/test_contenthost.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@
if not setting_is_set('clients') or not setting_is_set('fake_manifest'):
pytest.skip('skipping tests due to missing settings', allow_module_level=True)

pytestmark = [pytest.mark.no_containers]


@pytest.fixture(scope='module', autouse=True)
def host_ui_default():
Expand Down Expand Up @@ -82,7 +84,9 @@ def vm(module_repos_collection_with_manifest, rhel7_contenthost, target_sat):
@pytest.fixture
def vm_module_streams(module_repos_collection_with_manifest, rhel8_contenthost, target_sat):
"""Virtual machine registered in satellite"""
module_repos_collection_with_manifest.setup_virtual_machine(rhel8_contenthost)
module_repos_collection_with_manifest.setup_virtual_machine(
rhel8_contenthost, enable_custom_repos=True
)
rhel8_contenthost.add_rex_key(satellite=target_sat)
yield rhel8_contenthost

Expand Down