idea76-gameeconomy-studio-v.../test.sh

11 lines
199 B
Bash

#!/usr/bin/env bash
set -euo pipefail
echo "Running unit tests with pytest..."
pytest -q
echo "Building Python package..."
python3 -m build
echo "All tests passed and package built successfully."