mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
* fix failing unit tests * fix unit test pipeline * add newline to unit-test file * preserve semantics from docker volume test * add error-handling tests * reorganize file structure of unit tests * add comment for using _file format in ensure relay credentials test * add error handling unit tests * use unit-test directory * stack trace should be from the unit test directory * Slightly better fail signal * Clearer start as well Co-authored-by: Chad Whitacre <chadwhitacre@sentry.io>
13 lines
212 B
Bash
Executable File
13 lines
212 B
Bash
Executable File
#!/usr/bin/env bash
|
|
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
|