Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

unset HOST env var before integration test #416

Merged
merged 1 commit into from
Feb 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions ci/jenkins/testkomodo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ start_integration_test () {
pushd tests/data/spe1_st

echo "Initiating Ert run for Spe1 with new storage enabled..."

ert ensemble_experiment --enable-new-storage spe1.ert

echo "Ert ensemble_experiment run finished"

echo "Test for webviz-ert plugins ..."
# $HOST is set to machine name for f_komodo user's bash shells.
# Must unset for Dash to use localhost as server name, as Selenium expects.
unset HOST

echo "Test for webviz-ert plugins..."
pytest ../../../ -vs -m spe1

popd
}