Skip to content

Check with the latest deployment (with all the compiler flags)

40d9037
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

Final optimisation branch for ESM1.6 PI-config #298

Check with the latest deployment (with all the compiler flags)
40d9037
Select commit
Loading
Failed to load commit list.
GitHub Actions / QA Test Results failed Dec 18, 2025 in 0s

1 fail, 2 skipped, 32 pass in 0s

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

Results for commit 40d9037.

Annotations

Check warning on line 0 in qa.test_config.TestRelConfig

See this annotation in the file changed.

@github-actions github-actions / QA Test Results

test_manifest_reproduce_exe_is_on (qa.test_config.TestRelConfig) failed

./test_report.xml [took 0s]
Raw output
AssertionError: Executable reproducibility should be enforced, e.g set:
  manifest:
      reproduce:
          exe: True
assert ('exe' in {'exe': False, 'input': True} and False)
self = <test_config.TestRelConfig object at 0x7fbfb8e19590>
config = {'calendar': {'runtime': {'days': 0, 'months': 0, 'years': 1}}, 'collate': {'enable': False}, 'jobfs': '1500MB', 'jobname': 'pre-industrial', ...}

    def test_manifest_reproduce_exe_is_on(self, config):
        manifest_reproduce = config.get("manifest", {}).get("reproduce", {})
>       assert "exe" in manifest_reproduce and manifest_reproduce["exe"], (
            "Executable reproducibility should be enforced, e.g set:\n"
            + "manifest:\n    reproduce:\n        exe: True"
        )
E       AssertionError: Executable reproducibility should be enforced, e.g set:
E         manifest:
E             reproduce:
E                 exe: True
E       assert ('exe' in {'exe': False, 'input': True} and False)

/opt/hostedtoolcache/Python/3.11.0/x64/lib/python3.11/site-packages/model_config_tests/config_tests/qa/test_config.py:91: AssertionError