ClickHouse/tests/ci/test_ci_config.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
343 B
Python
Raw Normal View History

#!/usr/bin/env python3
import unittest
from ci_config import JobNames, CI_CONFIG, Runners
2024-01-19 16:02:17 +00:00
class TestCIConfig(unittest.TestCase):
def test_runner_config(self):
"""check runner is provided w/o exception"""
for job in JobNames:
runner = CI_CONFIG.get_runner_type(job)
self.assertIn(runner, Runners)