mirror of
https://github.com/saymrwulf/NTT-learning.git
synced 2026-05-14 20:47:53 +00:00
11 lines
207 B
Bash
Executable file
11 lines
207 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$SCRIPT_DIR/common.sh"
|
|
|
|
require_venv
|
|
|
|
cd "$REPO_ROOT"
|
|
"$VENV_PY" -m unittest discover -s tests -t .
|
|
|