Eivind Jahren

Results 72 issues of Eivind Jahren

The following functionality is supposedly used outside of ert but seems to simply be broken, and should likely just be removed: https://github.com/equinor/ert/blob/d20ddc3b63cf4f5a7dc2efcfe841e7944d287392/src/ert/_c_wrappers/job_queue/workflow_job.py#L98 `WorkflowJob::isPlugin` calls `issubclass(script_obj, ErtPlugin)` which probably always fails,...

While the following works: ```python import os from res.enkf import ResConfig, SiteConfig def touch(filename): with open(filename, "w") as fh: fh.write(" ") def test_works(tmpdir): touch(tmpdir + "/rpfile") touch(tmpdir + "/datafile") os.mkdir(tmpdir...

The current test setup is hard to work with for two reasons: - Its difficult to know where a test is placed, and where to place your test - Some...

epic

Testing of the exporter was removed as it depended on semeio in #3669 . Adding back the lost test coverage should be considered.

https://docs.prefect.io/migration-guide/

With the new `res/enkf/substituter.py`, the order of operations is significant, and can easily done incorrectly. For instance: ```python run_context = ert.create_ensemble_experiment_run_context(...) ert.set_geo_id(geo_id, sim_id, itr) ``` here the paths in run_context...

Currently, substitutions are held by two objects, the cpp `subst_list` in `subst_config` held by `res_config` and the python `Substituter` held by `EnKFMain`. Only `Substituter` should be responsible for which substitutions...

payback
maintenance

Usually one will include a %d in the job name and two in RUNPATH. This is not required but the runpaths generally need to be different for every realization and...

payback
maintenance
Configuration
release-notes:breaking-change

The current default runpath is "simulations/realization%d" and is defined here: https://github.com/equinor/ert/blob/5021243874589b99502cc8295d27c627adf87e64/libres/lib/include/ert/enkf/enkf_defaults.hpp#L99 This default has a good chance of having to be overriden since it isn't different per iteration. Suggest changing...

payback
maintenance
Configuration
release-notes:breaking-change

We have ran into a problem on our jenkins instances that `tmp` is filled up. The tmpdir setup should probably clean up older entries as to not contribute to the...