From 6896b0a9083c42b46a4505de717efddb44f3746e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5vard=20Berland?= Date: Fri, 20 Dec 2024 12:29:47 +0100 Subject: [PATCH] print stderr from everest run --- .github/workflows/test_ert_with_flow.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_ert_with_flow.yml b/.github/workflows/test_ert_with_flow.yml index 6722b90f786..33cac64fe77 100644 --- a/.github/workflows/test_ert_with_flow.yml +++ b/.github/workflows/test_ert_with_flow.yml @@ -48,14 +48,18 @@ jobs: set -e pytest tests/ert/unit_tests/resources/test_run_flow_simulator.py + - name: Run Ert on an example configuration with flow + run: | pushd test-data/ert/flow_example perl -p -i -e 's/NUM_REALIZATIONS\s*12/NUM_REALIZATIONS 2/g' flow.ert - ert ensemble_experiment flow.ert --disable-monitor + ert ensemble_experiment flow.ert popd - - name: Run everest integration test with OPM flow + - name: Run Everest on an example configuration with flow run: | set -e pushd test-data/everest/egg/everest/model + everest lint config_flow.yml everest run config_flow.yml + find . -name *stderr* -exec cat {} \; popd