spawner/.pre-commit-config.yaml

19 lines
347 B
YAML
Raw Permalink Normal View History

2024-01-29 11:31:49 +01:00
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.1.14
hooks:
# Run the linter.
- id: ruff
args: [ --fix ]
# Run the formatter.
- id: ruff-format
2024-02-08 14:59:23 +01:00
- repo: local
hooks:
- id: pytest
name: pytest
entry: .venv/bin/pytest tests/
2024-02-08 14:59:23 +01:00
language: script
files: \.py$