diff --git a/pungi/checks.py b/pungi/checks.py index d9f82c12..acb3f4b4 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -1138,7 +1138,6 @@ CONFIG_DEPS = { "gather_source": { "conflicts": [ (lambda val: val != 'json', ['gather_source_mapping']), - (lambda val: val != 'comps', ['comps_file']), ], "requires": [ (lambda val: val == 'json', ['gather_source_mapping']), diff --git a/tests/test_config.py b/tests/test_config.py index 24bc72d6..5f7d04b7 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -247,8 +247,7 @@ class GatherConfigTestCase(ConfigTestCase): self.assertValidation( cfg, - [checks.REQUIRES.format('gather_source', 'json', 'gather_source_mapping'), - checks.CONFLICTS.format('gather_source', 'json', 'comps_file')]) + [checks.REQUIRES.format('gather_source', 'json', 'gather_source_mapping')]) class OSBSConfigTestCase(ConfigTestCase):