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

[Comp Eval] Fixing tests and adding support for errata install by search #14975

Merged
merged 10 commits into from
May 22, 2024
Prev Previous commit
Next Next commit
updating pytest mark
  • Loading branch information
ColeHiggins2 committed May 22, 2024
commit 6c451424f38f7e6f52978807e5facee0f6754094
4 changes: 2 additions & 2 deletions tests/foreman/api/test_reporttemplates.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ def test_negative_create_report_without_name(module_target_sat):


@pytest.mark.tier2
@pytest.mark.rhel_ver_match(r'^(?!6$)\d+$')
@pytest.mark.rhel_ver_match('[^6]')
@pytest.mark.no_containers
def test_positive_applied_errata(
function_org, function_location, function_lce, rhel_contenthost, target_sat
Expand Down Expand Up @@ -460,7 +460,7 @@ def test_positive_applied_errata(


@pytest.mark.tier2
@pytest.mark.rhel_ver_match(r'^(?!6$)\d+$')
@pytest.mark.rhel_ver_match('[^6]')
@pytest.mark.no_containers
def test_positive_applied_errata_by_search(
function_org, function_location, function_lce, rhel_contenthost, target_sat
Expand Down