Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pre-industrial: remove reference to deleted parexe file #44

Merged

config.yaml: Change `collate.mpi` from true to false

00ec564
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Pre-industrial: remove reference to deleted parexe file #44

config.yaml: Change `collate.mpi` from true to false
00ec564
Select commit
Loading
Failed to load commit list.
GitHub Actions / QA Test Results failed Aug 13, 2024 in 0s. View latest attempt.

1 fail, 35 pass in 0s

36 tests   35 ✅  0s ⏱️
 1 suites   0 💤
 1 files     1 ❌

Results for commit 00ec564.

Annotations

Check warning on line 0 in qa.test_access_esm1p5_config.TestAccessEsm1p5

See this annotation in the file changed.

@github-actions github-actions / QA Test Results

test_mppnccombine_fast_collate_exe (qa.test_access_esm1p5_config.TestAccessEsm1p5) failed

./test_report.xml [took 0s]
Raw output
AssertionError: Field 'collate.mpi' in config.yaml is not expected value: true
assert False
self = <test_access_esm1p5_config.TestAccessEsm1p5 object at 0x7efff46ec210>
config = {'calendar': {'runtime': {'days': 0, 'months': 0, 'years': 1}, 'start': {'days': 1, 'month': 1, 'year': 101}}, 'collat...pack', 'mem': '4GB', 'mpi': False, 'restart': True, ...}, 'jobname': 'pre-industrial', 'laboratory': 'access-esm', ...}

    def test_mppnccombine_fast_collate_exe(self, config):
        if "collate" in config:
            assert (
                config["collate"]["exe"] == VALID_MPPNCCOMBINE_EXE
            ), error_field_incorrect(
                "collate.exe", "config.yaml", VALID_MPPNCCOMBINE_EXE
            )
    
            assert "mpi" in config["collate"], error_field_nonexistence(
                "collate.mpi", "config.yaml"
            )
    
>           assert config["collate"]["mpi"], error_field_incorrect(
                "collate.mpi", "config.yaml", "true"
            )
E           AssertionError: Field 'collate.mpi' in config.yaml is not expected value: true
E           assert False

/opt/hostedtoolcache/Python/3.11.0/x64/lib/python3.11/site-packages/model_config_tests/qa/test_access_esm1p5_config.py:188: AssertionError