freqtrade_origin/build_helpers/pre_commit_update.py

50 lines
1.1 KiB
Python
Raw Normal View History

2024-04-18 20:51:25 +00:00
# File used in CI to ensure pre-commit dependencies are kept up-to-date.
2022-04-25 08:15:07 +00:00
import sys
from pathlib import Path
import yaml
2024-05-12 14:18:15 +00:00
pre_commit_file = Path(".pre-commit-config.yaml")
require_dev = Path("requirements-dev.txt")
require = Path("requirements.txt")
2022-04-25 08:15:07 +00:00
2024-05-12 14:18:15 +00:00
with require_dev.open("r") as rfile:
2022-04-25 08:15:07 +00:00
requirements = rfile.readlines()
2024-05-12 14:18:15 +00:00
with require.open("r") as rfile:
requirements.extend(rfile.readlines())
2022-04-25 08:15:07 +00:00
# Extract types only
2024-05-12 14:18:15 +00:00
type_reqs = [
r.strip("\n") for r in requirements if r.startswith("types-") or r.startswith("SQLAlchemy")
]
2022-04-25 08:15:07 +00:00
2024-05-12 14:18:15 +00:00
with pre_commit_file.open("r") as file:
f = yaml.load(file, Loader=yaml.SafeLoader)
2022-04-25 08:15:07 +00:00
2024-05-12 14:18:15 +00:00
mypy_repo = [
repo for repo in f["repos"] if repo["repo"] == "https://github.com/pre-commit/mirrors-mypy"
]
2022-04-25 08:15:07 +00:00
2024-05-12 14:18:15 +00:00
hooks = mypy_repo[0]["hooks"][0]["additional_dependencies"]
2022-04-25 08:15:07 +00:00
errors = []
for hook in hooks:
if hook not in type_reqs:
errors.append(f"{hook} is missing in requirements-dev.txt.")
for req in type_reqs:
if req not in hooks:
errors.append(f"{req} is missing in pre-config file.")
if errors:
for e in errors:
print(e)
sys.exit(1)
sys.exit(0)