idea44-soundgraph-studio-ve.../test.sh

14 lines
210 B
Bash

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