ClickHouse/utils/changelog/changelog.py

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

16 lines
480 B
Python
Raw Normal View History

#!/usr/bin/env python3
# In our CI this script runs in style-test containers
2024-06-04 12:06:26 +00:00
# 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
2024-06-04 12:06:26 +00:00
import subprocess
import sys
from pathlib import Path
2024-06-04 12:06:26 +00:00
SCRIPT_PATH = (Path(__file__).parents[2] / "tests/ci/changelog.py").absolute()
if __name__ == "__main__":
2024-06-04 12:06:26 +00:00
subprocess.check_call(["python3", SCRIPT_PATH, *sys.argv[1:]])