idea115-taxalpha-studio-dec.../test.sh

14 lines
229 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
echo "Installing package in editable mode..."
python3 -m pip install -e .
echo "Running pytest..."
pytest -q
echo "Building package for verification..."
python3 -m build
echo "All done."