Skip to content

Commit

Permalink
Move CustomReposAreValid to pre_ponr_changes stage
Browse files Browse the repository at this point in the history
Moving the CustomReposAreValid to pre_ponr_changes to be a dependency of
SUBSCRIBE_SYSTEM.
  • Loading branch information
r0x0d committed Jul 3, 2024
1 parent 3c983c8 commit bcdb1b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

class CustomReposAreValid(actions.Action):
id = "CUSTOM_REPOSITORIES_ARE_VALID"
dependencies = ("SUBSCRIBE_SYSTEM",)

def run(self):
"""To prevent failures past the PONR, make sure that the enabled custom repositories are valid.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import pytest

from convert2rhel import unit_tests
from convert2rhel.actions.system_checks import custom_repos_are_valid
from convert2rhel.actions.pre_ponr_changes import custom_repos_are_valid


@pytest.fixture
Expand Down

0 comments on commit bcdb1b0

Please sign in to comment.