Eivind Jahren

Results 71 issues of Eivind Jahren

Akin to #95, when a job is triggered by a pull request, the checkout action may merge. If the PR branch is behind, the resulting comparison is still done against...

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Code before refactoring: ``` class A: def __init__(self): pass...

bug
rename-refactor

This is admittedly a big PR, and I appologize. I wanted to do the same change of setup as in https://github.com/python-rope/ropemode/pull/21 where pytest and github actions are introduced. However, ropevim...

Adresses problem raised in #3708 where `_ies` is made a private module in ert. The public code is now part of the `iterative_ensemble_smoother` package. Some of the nice testing done...

The current entry point for getting `EnkfMain` is: ```python from res.enkf import EnkfMain, ResConfig enkf_main = EnkfMain(ResConfig("my_config.ert")) ``` However, there is an alternative path already in place: ```python from res.enkf...

epic

When creating `SiteConfig` from a file name. The job list will be populated, while if you create from dict, the list will not be populated. This will have to be...

The following test fails as loading `QueueConfig` from file with have `job_script` pointing at `ert/bin/job_dispatch.py` while for from dict it will be `job.sh`. ```python import os from res.enkf import QueueConfig...

Some dict objects handle defaulting of values such as `AnalysisConfig`: https://github.com/equinor/ert/blob/3f84b979b985376aade9203a6b977b9b541d8c14/res/enkf/analysis_config.py#L152-L163 while others do not, such as `QueueConfig`, do not: https://github.com/equinor/ert/blob/3f84b979b985376aade9203a6b977b9b541d8c14/res/enkf/queue_config.py#L87-L94

Running the drogon example with `ert vis` gives a large amount of warnings of the form: ``` ** Warning:: invalid node found at offset:115091392 in datafile:/private/abc/drogon/drogon_20211115_12-12/resmod/ff/21.0.1/ert/output/storage/01_drogon_ahm/default_2/Ensemble/mod_3/PARAMETER.data_0 - data will be...

bug

``` >>> from ert._c_wrappers.enkf import SubstConfig >>> filename = "..." # name of config file >>> config_dict = {...} # Config dictionary with same values as the config file >>>...