Skip to content

Commit

Permalink
Use new example configuration names (#414)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Aug 24, 2020
1 parent db6173e commit b4c79ec
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- name: 🐳 Build Docker example image
run: |
pip install webviz-config-equinor
webviz build ./webviz-subsurface-testdata/webviz_examples/full_demo.yaml --portable ./example_subsurface_app --theme equinor
webviz build ./webviz-subsurface-testdata/webviz_examples/webviz-full-demo.yml --portable ./example_subsurface_app --theme equinor
rm -rf ./webviz-subsurface-testdata
pushd example_subsurface_app
# Related to https://github.com/equinor/webviz-config/issues/150:
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_aggregated_data_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def test_basic_example(dash_duo, tmp_path):
# Build a portable webviz from config file
appdir = tmp_path / "app"
subprocess.call( # nosec
["webviz", "build", "aggregated.yaml", "--portable", appdir],
["webviz", "build", "webviz-aggregated.yml", "--portable", appdir],
cwd="./webviz-subsurface-testdata/webviz_examples",
)
# Remove Talisman
Expand Down
2 changes: 1 addition & 1 deletion tests/integration_tests/test_raw_data_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def test_full_example(dash_duo, tmp_path):
# Build a portable webviz from config file
appdir = tmp_path / "app"
subprocess.call( # nosec
["webviz", "build", "raw_data.yaml", "--portable", appdir],
["webviz", "build", "webviz-raw-data.yml", "--portable", appdir],
cwd="./webviz-subsurface-testdata/webviz_examples",
)
# Remove Talisman
Expand Down

0 comments on commit b4c79ec

Please sign in to comment.