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