12 lines
270 B
Bash
Executable File
12 lines
270 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "Running CityGrid tests..."
|
|
export PYTHONPATH="${PYTHONPATH:+$PYTHONPATH:}/workspace/repo"
|
|
pytest -q
|
|
|
|
echo "Building Python package (for packaging sanity check)..."
|
|
python3 -m build
|
|
|
|
echo "All tests passed and package built."
|