Skip to content

Commit bdd5073

Browse files
authored
build: 🔨 removed the reset-local recipe (#32)
## Description This PR removes the `reset-local`, it wasn't working as I thought. <!-- Select quick/in-depth as necessary --> This PR needs a quick review.
1 parent 1fdc730 commit bdd5073

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

justfile

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
@_default:
22
just --list --unsorted
33

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

77
# Install Python package dependencies
88
install-deps:
@@ -29,11 +29,6 @@ format-python:
2929
poetry run ruff check --fix .
3030
poetry run ruff format .
3131

32-
# Reset local Sprout (remove __pycache__ folders, generated build files, etc)
33-
reset-local:
34-
find . -type d -name "__pycache__" -exec rm -rf {} +
35-
rm -rf .storage
36-
3732
# Build the documentation website using Quarto
3833
build-website:
3934
# To let Quarto know where python is.

0 commit comments

Comments
 (0)