mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
16 lines
419 B
Python
16 lines
419 B
Python
#!/usr/bin/env python3
|
|
|
|
import unittest
|
|
|
|
|
|
class TestCiConfig(unittest.TestCase):
|
|
def test_no_errors_in_ci_config(self):
|
|
raised = None
|
|
try:
|
|
from ci_config import ( # pylint: disable=import-outside-toplevel
|
|
CI_CONFIG as _,
|
|
)
|
|
except Exception as exc:
|
|
raised = exc
|
|
self.assertIsNone(raised, f"CI_CONFIG import raised error {raised}")
|