We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b896b4 commit 76692b3Copy full SHA for 76692b3
justfile
@@ -1,7 +1,8 @@
1
@_default:
2
just --list --unsorted
3
4
-run-all: install-deps format-python check-python run-tests check-commits build-website
+# Run all the build recipes
5
+run-all: reset-local install-deps format-python check-python test-python check-commits build-website
6
7
# Install Python package dependencies
8
install-deps:
@@ -15,8 +16,8 @@ generate-puml-all:
15
16
generate-puml name:
17
docker run --rm -v $(pwd):/puml -w /puml ghcr.io/plantuml/plantuml:latest -tsvg "**/{{name}}.puml"
18
-# Run Python tests
19
-run-tests:
+# Run the Python tests
20
+test-python:
21
poetry run pytest
22
23
# Check Python code with the linter for any errors that need manual attention
0 commit comments