deltatrace-deterministic-re.../test.sh

12 lines
249 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
# Run Python tests and packaging to validate MVP readiness
echo "Running Python tests..."
pytest -q
echo "Building package to validate metadata..."
python3 -m build
echo "All tests passed and package built."