Skip to content
Snippets Groups Projects
Commit baf2fc65 authored by Michal Zander's avatar Michal Zander
Browse files

Adjust test for scripts

parent 290d4dbe
No related branches found
No related tags found
1 merge request!98Add pattern tests for REST API
......@@ -42,18 +42,22 @@ while [ $# -gt 0 ]; do
shift
done
pushd "$script_dir/.."
echo "Test 1. Generate version..."
./scripts/generate_version_sql.sh "$script_dir/.."
echo "Generate version completed successfully"
popd
pushd "$script_dir"
echo "Test 1. Reinstall app..."
echo "Test 2. Reinstall app..."
./install_app.sh --host="$POSTGRES_HOST"
echo "Reinstall completed successfully"
echo "Test 2. Uninstall app, leave indexes..."
echo "Test 3. Uninstall app..."
./uninstall_app.sh --host="$POSTGRES_HOST"
echo "Uninstall app completed successfully"
echo "Test 3. Clear indexes..."
./uninstall_app.sh --host="$POSTGRES_HOST" --drop-indexes
echo "Uninstall app and clear indexes completed successfully"
popd
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment