File: happy.sh

package info (click to toggle)
python-sybil 10.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,200 kB
  • sloc: python: 5,194; makefile: 40; sh: 12
file content (19 lines) | stat: -rwxr-xr-x 425 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
set -ex

echo "=== Syncing dependencies ==="
uv sync --all-extras --all-groups

echo "=== Tests + Coverage ==="
uv run pytest --cov=src/sybil --cov-report=term-missing --cov-fail-under=100 .

echo "=== Formatting ==="
uv run ruff format .

echo "=== Type Checking ==="
uv run mypy src tests

echo "=== Docs Build ==="
uv run make -C docs clean html SPHINXOPTS=--fail-on-warning

echo "=== All checks passed! ==="