13 lines
310 B
Bash
13 lines
310 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "Running DeltaForge Skeleton tests..."
|
|
|
|
# 1) Build the package to verify packaging metadata and directory structure
|
|
python3 -m build
|
|
|
|
# 2) Run unit tests (standard library unittest)
|
|
python3 -m unittest discover -s deltaforge_skeleton/tests
|
|
|
|
echo "All tests passed."
|