15 lines
352 B
Bash
15 lines
352 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Test script for PolyPort Studio MVP
|
|
# - Runs pytest tests
|
|
# - Builds the Python package (PEP 517/518) to verify packaging metadata
|
|
|
|
echo "==> Running pytest tests..."
|
|
pytest -q
|
|
|
|
echo "==> Building the package to verify packaging metadata..."
|
|
python3 -m build
|
|
|
|
echo "All tests and build completed successfully."
|