mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-13 07:41:11 +01:00
477d59d319
Co-authored-by: Félix Saparelli <felix@passcod.name> Co-authored-by: github-actions <github-actions@github.com>
13 lines
236 B
Bash
Executable file
13 lines
236 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
export WATCHEXEC_BIN=$(realpath ${WATCHEXEC_BIN:-$(which watchexec)})
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/integration"
|
|
for test in *.sh; do
|
|
echo
|
|
echo
|
|
echo "======= Testing $test ======="
|
|
./$test
|
|
done
|