Files
hakorune/tools/python_unit.sh

7 lines
173 B
Bash

#!/usr/bin/env bash
set -euo pipefail
ROOT=$(CDPATH= cd -- "$(dirname -- "$0")/.." && pwd)
cd "$ROOT"
exec python3 -m unittest discover -s src/llvm_py/tests -p 'test_*.py'