Skip to content

Conversation

@jarrodmillman
Copy link
Member

Manually ran:

import yaml import subprocess file = ".pre-commit-config.yaml" with open(file, "r") as f: data = yaml.safe_load(f) repos = [] for repo in data['repos']: if 'mirrors-prettier' not in repo['repo']: repos.append("--repo") repos.append(repo['repo']) command = ['pre-commit', 'autoupdate', '--freeze'] + repos subprocess.call(command) 
@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (e13c520) 93.95% compared to head (d45f3f9) 93.95%.

❗ Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files
@@ Coverage Diff @@ ## main #87 +/- ## ======================================= Coverage 93.95% 93.95% ======================================= Files 4 4 Lines 182 182 ======================================= Hits 171 171 Misses 11 11 

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@jarrodmillman jarrodmillman merged commit 262a2bb into scientific-python:main Jan 19, 2024
@jarrodmillman jarrodmillman deleted the precommit branch January 19, 2024 04:56
@jarrodmillman jarrodmillman added this to the 0.4 milestone Jan 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

2 participants