7 lines
178 B
Bash
Executable File
7 lines
178 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Run the full bats test suite for sethLabels packaging scripts.
|
|
# Requires: bats (apt install bats).
|
|
set -euo pipefail
|
|
cd "$(dirname "$0")"
|
|
exec bats *.bats
|