-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
37 lines (26 loc) · 659 Bytes
/
justfile
File metadata and controls
37 lines (26 loc) · 659 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
install:
uv pip install -e ".[dev]"
playwright install chromium
format:
ruff format src tests
lint:
ruff check src tests
lint-fix:
ruff check --fix src tests
test:
pytest tests/unit -q --tb=short
test-integration:
pytest tests/integration -q --tb=short
test-e2e:
pytest tests/e2e -q --tb=short
test-all:
pytest tests/ -q --tb=short
check: lint test
pre-commit-install:
pre-commit install
clean:
rm -rf dist build .pytest_cache .ruff_cache playwright-report test-results
find . -type d -name __pycache__ -exec rm -rf {} +
find . -type d -name "*.egg-info" -exec rm -rf {} +
build:
hatch build