mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
15 lines
230 B
Bash
Executable File
15 lines
230 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
FORCE_CLEAN=1 "./scripts/reset.sh"
|
|
fail=0
|
|
for test_file in _unit-test/*-test.sh; do
|
|
echo "🙈 Running $test_file ..."
|
|
$test_file
|
|
if [ $? != 0 ]; then
|
|
echo fail 👎
|
|
fail=1
|
|
fi
|
|
done
|
|
|
|
exit $fail
|