catopt-grid-category-theore.../test.sh

10 lines
216 B
Bash

#!/usr/bin/env bash
set -euo pipefail
echo "Installing dependencies..."
pip install --no-cache-dir numpy>=1.24.0
echo "Running tests..."
pytest -q
echo "Building package..."
python3 -m build
echo "All tests passed."