Merge branch 'develop' into 8333-ops-auto-upstall-script-enhancements

This commit is contained in:
Rohit T P
2024-05-07 09:28:29 +00:00
230 changed files with 9381 additions and 4020 deletions

View File

@@ -6,13 +6,17 @@ export NOCO_HOME
setup() {
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
}
teardown() {
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
if [ -n "$SKIP_TEARDOWN" ]; then
return
fi
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
}
@test "Check installation with all default options" {

View File

@@ -11,8 +11,12 @@ setup() {
}
teardown() {
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
if [ -n "$SKIP_TEARDOWN" ]; then
return
fi
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
}
@test "Check installation with custom ip" {

View File

@@ -11,8 +11,12 @@ setup() {
}
teardown() {
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
if [ -n "$SKIP_TEARDOWN" ]; then
return
fi
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
}
@test "Check Redis is enabled when specified" {

View File

@@ -11,8 +11,12 @@ setup() {
}
teardown() {
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
if [ -n "$SKIP_TEARDOWN" ]; then
return
fi
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
}
@test "Check if two instances of NoCoDB can be run" {

View File

@@ -10,8 +10,12 @@ setup() {
}
teardown() {
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
if [ -n "$SKIP_TEARDOWN" ]; then
return
fi
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
}
@test "Should create SSL certificates" {

View File

@@ -9,8 +9,12 @@ setup() {
}
teardown() {
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
if [ -n "$SKIP_TEARDOWN" ]; then
return
fi
cd "${WORKING_DIR}/install" || exit 1
./setup.sh
}
@test "Check WatchTower is enabled when specified" {