17 lines
399 B
Bash
17 lines
399 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "Running DeltaTrace MVP tests and build..."
|
|
|
|
# Try to run any Python tests if present
|
|
if command -v pytest >/dev/null 2>&1; then
|
|
pytest -q || true
|
|
fi
|
|
|
|
# Build packaging metadata to ensure project is structurally sound
|
|
if command -v python3 >/dev/null 2>&1; then
|
|
python3 -m build || true
|
|
else
|
|
echo "Python3 not available; skipping build step" >&2
|
|
fi
|