14 lines
280 B
Bash
Executable File
14 lines
280 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
echo "[TEST] Installing package (editable) for test environment..."
|
|
python3 -m pip install -e .
|
|
|
|
echo "[TEST] Running pytest..."
|
|
pytest -q
|
|
|
|
echo "[TEST] Building package..."
|
|
python3 -m build
|
|
|
|
echo "All tests passed and packaging completed."
|