From 9d65c116a9542d9434c73e14892335bc59625368 Mon Sep 17 00:00:00 2001 From: Runar Ask Johannessen Date: Wed, 22 Nov 2023 14:59:18 +0100 Subject: [PATCH 1/2] add Komodo testing section to readme --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index d81020a4..8d092f1f 100644 --- a/README.md +++ b/README.md @@ -23,3 +23,17 @@ FORWARD_MODEL ECLIPSE100(...) --Note: SIM2SUMO must come after ECLIPSE100 FORWARD_MODEL SIM2SUMO(=path/to/config/file) ``` + + +## Testing on top of Komodo +Sim2sumo and [sumo uploader](https://github.com/equinor/fmu-sumo-uploader) are both installed under `fmu/sumo/`. +This means that the uploader must also be installed to test a new version of sim2sumo on top of Komodo. + +Example: Installing sim2sumo from `mybranch` on top of Komodo bleeding +``` +< Create a new komodo env from komodo bleeding > +< Activate the new env > + +pip install git+https://github.com/equinor/fmu-sumo-sim2sumo.git@mybranch +pip install git+https://github.com/equinor/fmu-sumo-uploader.git +``` From a96e5c0daf65a58a6d0f500fb65c984ed1239a6d Mon Sep 17 00:00:00 2001 From: Runar Ask Johannessen Date: Thu, 23 Nov 2023 09:37:17 +0100 Subject: [PATCH 2/2] add note about the Explorer when testing on top of Komodo --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 8d092f1f..b1bac06c 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,8 @@ Example: Installing sim2sumo from `mybranch` on top of Komodo bleeding pip install git+https://github.com/equinor/fmu-sumo-sim2sumo.git@mybranch pip install git+https://github.com/equinor/fmu-sumo-uploader.git ``` + +The [Explorer](https://github.com/equinor/fmu-sumo) is also installed under `fmu/sumo`. Meaning that if the testing scenario includes the Explorer then it should also be installed on top of Komodo. +``` +pip install git+https://github.com/equinor/fmu-sumo.git +```