Skip to content
Snippets Groups Projects
Verified Commit 5340d5a5 authored by David Hoese's avatar David Hoese
Browse files

Remove allowed failure from postgres test

parent 9bfd0eed
No related branches found
No related tags found
No related merge requests found
......@@ -31,8 +31,7 @@ test_basic_pg:
extends: .helm_based_job
stage: test
script:
# run, but don't care about failure
- ./ci_tests/run_basic_postgres_test.sh || true
- ./ci_tests/run_basic_postgres_test.sh
after_script:
- ./ci_tests/cleanup_basic_postgres_test.sh
dependencies:
......@@ -42,6 +41,5 @@ test_basic_pg:
- get_chart_mapserver
- get_chart_mapcache
- get_chart_client
allow_failure: true
rules:
- when: on_success
......@@ -15,7 +15,7 @@ set -e
source ci_tests/_tests_common.sh
ns=$(./helpers/get_namespace.sh)
source ci_tests/get_release_names.sh
install_basic_grb_charts "ci_tests/basic_grb" || error "Failed to install charts"
install_basic_grb_charts "ci_tests/basic_grb"
# give kubernetes a bit to create the resources
debug "Waiting for Kubernetes to deploy and schedule components..."
......
......@@ -16,7 +16,7 @@ set -e
source ci_tests/_tests_common.sh
ns=$(./helpers/get_namespace.sh)
source ci_tests/get_release_names.sh
install_basic_postgres_charts "ci_tests/basic_postgres" || error "Failed to install charts"
install_basic_postgres_charts "ci_tests/basic_postgres"
# give kubernetes a bit to create the resources
debug "Waiting for Kubernetes to deploy and schedule components..."
......
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