This commit is contained in:
Alexey Milovidov 2024-01-19 17:02:17 +01:00
parent 482229cd27
commit 05609cf75d
2 changed files with 4 additions and 4 deletions

View File

@ -270,9 +270,9 @@ sql_test_params = {
@dataclass
class CiConfig:
class CIConfig:
"""
Contains configs for ALL jobs in CI pipeline
Contains configs for all jobs in the CI pipeline
each config item in the below dicts should be an instance of JobConfig class or inherited from it
"""
@ -435,7 +435,7 @@ class CiConfig:
raise KeyError("config contains errors", errors)
CI_CONFIG = CiConfig(
CI_CONFIG = CIConfig(
label_configs={
Labels.DO_NOT_TEST_LABEL.value: LabelConfig(run_jobs=["Style check"]),
},

View File

@ -3,7 +3,7 @@
import unittest
class TestCiConfig(unittest.TestCase):
class TestCIConfig(unittest.TestCase):
def test_no_errors_in_ci_config(self):
raised = None
try: