mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 09:08:37 +01:00
14 lines
236 B
Bash
14 lines
236 B
Bash
|
#!/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
|