Run Dependabot on Tuesdays (#170)

pull/171/head
Josh Karpel 1 year ago committed by GitHub
parent 6321c01418
commit bd99f3c1fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,3 +5,5 @@ updates:
directory: "/"
schedule:
interval: "weekly"
day: "tuesday"
open-pull-requests-limit: 1

@ -26,13 +26,19 @@ repos:
- id: python-no-log-warn
- id: python-use-type-annotations
- id: python-check-blanket-type-ignore
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.19.2
hooks:
- id: check-github-workflows
- id: check-github-actions
- id: check-dependabot
- repo: https://github.com/hadialqattan/pycln
rev: v2.1.2
hooks:
- id: pycln
args: [--config=pyproject.toml]
- repo: https://github.com/PyCQA/isort
rev: v5.11.3
rev: 5.11.4
hooks:
- id: isort
- repo: https://github.com/psf/black

@ -39,7 +39,7 @@ def take_reproducible_screenshot(app: App[object]) -> str:
async def auto_pilot(pilot: Pilot, name: str, keys: Iterable[str]) -> None:
await pilot.press(*intersperse("_", keys))
await pilot.press(*intersperse("wait:100", keys))
(ASSETS_DIR / name).with_suffix(".svg").write_text(take_reproducible_screenshot(pilot.app))

Loading…
Cancel
Save