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 1f33357 commit 8096f40Copy full SHA for 8096f40
Makefile
@@ -1,9 +1,23 @@
1
-.PHONY: faq website
+.PHONY: faq website test test-unit test-int test-fast help
2
3
# Extract FAQ data from Google Docs (with cleanup)
4
faq:
5
uv run python process_faq.py
6
7
# Generate static website
8
website:
9
- uv run python generate_website.py
+ uv run python generate_website.py
10
+
11
+# Test targets
12
+test:
13
+ @echo "🧪 Running all tests..."
14
+ uv run pytest tests/ -v
15
16
+test-unit:
17
+ @echo "🔬 Running unit tests..."
18
+ uv run pytest tests/unit/ -v
19
20
+test-int:
21
+ @echo "🔄 Running integration tests..."
22
+ uv run pytest tests/integration/ -v
23
0 commit comments