Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@_default:
just --list --unsorted

# Run all the build recipes
run-all: reset-local install-deps format-python check-python test-python check-commits build-website
# Run all build-related recipes in the justfile
run-all: install-deps format-python check-python run-tests check-commits build-website

# Install Python package dependencies
install-deps:
Expand All @@ -29,11 +29,6 @@ format-python:
poetry run ruff check --fix .
poetry run ruff format .

# Reset local Sprout (remove __pycache__ folders, generated build files, etc)
reset-local:
find . -type d -name "__pycache__" -exec rm -rf {} +
rm -rf .storage

# Build the documentation website using Quarto
build-website:
# To let Quarto know where python is.
Expand Down