0232e54f37
Follows the same setenv-based convention as the other bin/ scripts and runs python -m unittest discover against tests/. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
9 lines
304 B
Bash
9 lines
304 B
Bash
#!/bin/bash
|
|
# ================================================================
|
|
# Fuehrt die unittest-Suite in tests/ aus
|
|
# ================================================================
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/setenv.sh"
|
|
|
|
python -m unittest discover -s "$PLATZ/tests" -p "test_*.py" -v
|