Files
backy/tests/run_tests.sh
Andrew Woodlee 2824f8c703
Some checks failed
ci/woodpecker/push/go-lint Pipeline failed
inject ssh env vars by apppending them to the script
2025-12-08 10:08:44 -06:00

15 lines
300 B
Bash

#!/bin/bash
# This script runs all Go test files in the tests directory.
echo "Running all tests in the tests directory..."
go test ./tests/... -v
if [ $? -eq 0 ]; then
echo "All tests passed successfully."
else
echo "Some tests failed. Check the output above for details."
exit 1
fi