forgejo-notifications-core/integration/tests.sh

22 lines
318 B
Bash
Raw Normal View History

#!/bin/bash
2023-09-18 20:44:19 +05:30
# SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
set -Exeuo pipefail
source integration/lib.sh
main() {
teardown_env || true
setup_env
wait_for_env
forgejo_root
init_users_repo
teardown_env
echo "All Good! :)"
}
main