10 lines
115 B
Bash
10 lines
115 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# Invokes all test scripts.
|
|
#
|
|
set -euo pipefail
|
|
|
|
cd ./tests
|
|
poetry install
|
|
poetry run pytest
|