text stringclasses 371
values |
|---|
E + where False = <built-in function isclose>(0.9974282723997658, 1.0, abs_tol=2e-06, rel_tol=0.0) |
E + where <built-in function isclose> = math.isclose |
/verifier/test_outputs.py:132: AssertionError |
=============================== warnings summary =============================== |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:64 |
/usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:64: PyparsingDeprecationWarning: 'oneOf' deprecated - use 'one_of' |
prop = Group((name + Suppress("=") + comma_separated(value)) | oneOf(_CONSTANTS)) |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:85 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:85 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:85 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:85 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:85 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:85 |
/usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:85: PyparsingDeprecationWarning: 'parseString' deprecated - use 'parse_string' |
parse = parser.parseString(pattern) |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:89 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:89 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:89 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:89 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:89 |
../usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:89 |
/usr/local/lib/python3.12/site-packages/matplotlib/_fontconfig_pattern.py:89: PyparsingDeprecationWarning: 'resetCache' deprecated - use 'reset_cache' |
parser.resetCache() |
../usr/local/lib/python3.12/site-packages/matplotlib/_mathtext.py:45 |
/usr/local/lib/python3.12/site-packages/matplotlib/_mathtext.py:45: PyparsingDeprecationWarning: 'enablePackrat' deprecated - use 'enable_packrat' |
ParserElement.enablePackrat() |
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html |
==================================== PASSES ==================================== |
=========================== short test summary info ============================ |
PASSED ::test_frozen_input_hash_and_agent_visible_identity_boundary |
PASSED ::test_zero_count_prefix_reference_is_finite |
FAILED ::test_every_public_trajectory_prefix_matches_independent_posterior - ... |
FAILED ::test_checkpoint_densities_match_trajectories_and_independent_posteriors |
FAILED ::test_summary_design_and_metadata_crosscheck_to_artifacts - Assertion... |
FAILED ::test_machine_readable_convergence_and_phi_bound_sensitivity - Assert... |
FAILED ::test_report_and_figure_are_quantitative_and_nonblank - AssertionErro... |
FAILED ::test_reusable_script_solves_multiple_unpredictable_hidden_inputs - A... |
FAILED ::test_adversarial_regressions_reject_shortcuts - AssertionError: 0.99... |
================== 7 failed, 2 passed, 14 warnings in 16.20s =================== |
============================= test session starts ============================== |
platform linux -- Python 3.12.13, pytest-8.4.1, pluggy-1.6.0 -- /usr/local/bin/python3 |
rootdir: /app |
configfile: ../dev/null |
plugins: json-ctrf-0.3.5 |
collecting ... collected 9 items |
::test_frozen_input_hash_and_agent_visible_identity_boundary PASSED [ 11%] |
::test_every_public_trajectory_prefix_matches_independent_posterior FAILED [ 22%] |
::test_checkpoint_densities_match_trajectories_and_independent_posteriors FAILED [ 33%] |
::test_summary_design_and_metadata_crosscheck_to_artifacts FAILED [ 44%] |
::test_machine_readable_convergence_and_phi_bound_sensitivity FAILED [ 55%] |
::test_report_and_figure_are_quantitative_and_nonblank FAILED [ 66%] |
::test_zero_count_prefix_reference_is_finite PASSED [ 77%] |
::test_reusable_script_solves_multiple_unpredictable_hidden_inputs FAILED [ 88%] |
::test_adversarial_regressions_reject_shortcuts FAILED [100%] |
=================================== FAILURES =================================== |
______ test_every_public_trajectory_prefix_matches_independent_posterior _______ |
def test_every_public_trajectory_prefix_matches_independent_posterior() -> None: |
> validate_trajectory(load_payload(), SOLUTION) |
/verifier/test_outputs.py:530: |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
/verifier/test_outputs.py:189: in validate_trajectory |
raw_rows = load_trajectory(solution) |
^^^^^^^^^^^^^^^^^^^^^^^^^ |
/verifier/test_outputs.py:97: in load_trajectory |
return load_csv(solution / "posterior_trajectories.csv", TRAJECTORY_COLUMNS) |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
path = PosixPath('/root/solution/posterior_trajectories.csv') |
columns = ['run_id', 'strategy', 'shot', 'frequency_mhz', 'zeta', 'theta_mean', ...] |
def load_csv(path: Path, columns: list[str]) -> list[dict[str, str]]: |
> assert path.is_file(), f"missing {path.name}" |
E AssertionError: missing posterior_trajectories.csv |
E assert False |
E + where False = is_file() |
E + where is_file = PosixPath('/root/solution/posterior_trajectories.csv').is_file |
/verifier/test_outputs.py:89: AssertionError |
___ test_checkpoint_densities_match_trajectories_and_independent_posteriors ____ |
def test_checkpoint_densities_match_trajectories_and_independent_posteriors() -> None: |
payload = load_payload() |
> rows = [numeric_trajectory_row(row) for row in load_trajectory()] |
^^^^^^^^^^^^^^^^^ |
/verifier/test_outputs.py:535: |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
/verifier/test_outputs.py:97: in load_trajectory |
return load_csv(solution / "posterior_trajectories.csv", TRAJECTORY_COLUMNS) |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.