deltaforge-real-time-cross-.../test.sh

12 lines
174 B
Bash

#!/usr/bin/env bash
set -euo pipefail
echo "Running unit tests..."
pytest -q
echo "Building package..."
python3 -m build
echo "All tests passed and package built."
exit 0