mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
16 lines
480 B
Python
Executable File
16 lines
480 B
Python
Executable File
#!/usr/bin/env python3
|
|
# In our CI this script runs in style-test containers
|
|
|
|
# The main script is moved to tests/ci/changelog.py
|
|
# It depends on the ci scripts too hard to keep it here
|
|
# Here's only a wrapper around it for the people who used to it
|
|
|
|
import subprocess
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
SCRIPT_PATH = (Path(__file__).parents[2] / "tests/ci/changelog.py").absolute()
|
|
|
|
if __name__ == "__main__":
|
|
subprocess.check_call(["python3", SCRIPT_PATH, *sys.argv[1:]])
|