idea65-edgemarketsignal-edg.../test.sh

12 lines
253 B
Bash

#!/usr/bin/env bash
set -euo pipefail
# Test script to verify unit tests and packaging before publishing.
echo "Running unit tests..."
pytest -q
echo "Building wheel/static distribution..."
python3 -m build
echo "All tests passed and package built."