text stringlengths 0 94 |
|---|
============================= test session starts ============================== |
platform linux -- Python 3.12.13, pytest-8.4.1, pluggy-1.6.0 -- /usr/local/bin/python3 |
rootdir: /root |
configfile: ../dev/null |
plugins: json-ctrf-0.3.5 |
collecting ... collected 5 items |
../root::test_nominal_inputs_are_pristine_and_solver_has_no_reward_hack_patterns FAILED [ 20%] |
../root::test_nominal_schema_and_independent_monodromy_agreement FAILED [ 40%] |
../root::test_nominal_derived_quantities_diagnostics_and_crossing FAILED [ 60%] |
../root::test_nominal_harmonic_order_convergence_is_complete FAILED [ 80%] |
../root::test_submitted_solver_generalizes_to_hidden_five_mode_scan FAILED [100%] |
=================================== FAILURES =================================== |
___ test_nominal_inputs_are_pristine_and_solver_has_no_reward_hack_patterns ____ |
def test_nominal_inputs_are_pristine_and_solver_has_no_reward_hack_patterns() -> None: |
assert read_config(NOMINAL_CONFIG) == EXPECTED_NOMINAL_CONFIG |
assert sha256(NOMINAL_SAMPLES) == NOMINAL_SAMPLE_SHA256 |
> assert_solver_source_clean() |
test_outputs.py:1129: |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
def assert_solver_source_clean() -> None: |
> assert SOLVER.is_file(), "missing /root/coupled_floquet_solver.py" |
E AssertionError: missing /root/coupled_floquet_solver.py |
E assert False |
E + where False = is_file() |
E + where is_file = PosixPath('/root/coupled_floquet_solver.py').is_file |
test_outputs.py:1022: AssertionError |
___________ test_nominal_schema_and_independent_monodromy_agreement ____________ |
def test_nominal_schema_and_independent_monodromy_agreement() -> None: |
> bundle = load_bundle(ROOT, NOMINAL_CONFIG, NOMINAL_SAMPLES) |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
test_outputs.py:1133: |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
output_dir = PosixPath('/root') |
config_path = PosixPath('/root/coupled_floquet_config.json') |
sample_path = PosixPath('/root/dynamic_matrix_samples.npz') |
def load_bundle(output_dir: Path, config_path: Path, sample_path: Path) -> Bundle: |
array_path = output_dir / "floquet_modes.npz" |
result_path = output_dir / "result.json" |
convergence_path = output_dir / "convergence.json" |
> assert array_path.is_file(), f"missing {array_path}" |
E AssertionError: missing /root/floquet_modes.npz |
E assert False |
E + where False = is_file() |
E + where is_file = PosixPath('/root/floquet_modes.npz').is_file |
test_outputs.py:167: AssertionError |
___________ test_nominal_derived_quantities_diagnostics_and_crossing ___________ |
def test_nominal_derived_quantities_diagnostics_and_crossing() -> None: |
> bundle = load_bundle(ROOT, NOMINAL_CONFIG, NOMINAL_SAMPLES) |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
test_outputs.py:1139: |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
output_dir = PosixPath('/root') |
config_path = PosixPath('/root/coupled_floquet_config.json') |
sample_path = PosixPath('/root/dynamic_matrix_samples.npz') |
def load_bundle(output_dir: Path, config_path: Path, sample_path: Path) -> Bundle: |
array_path = output_dir / "floquet_modes.npz" |
result_path = output_dir / "result.json" |
convergence_path = output_dir / "convergence.json" |
> assert array_path.is_file(), f"missing {array_path}" |
E AssertionError: missing /root/floquet_modes.npz |
E assert False |
E + where False = is_file() |
E + where is_file = PosixPath('/root/floquet_modes.npz').is_file |
test_outputs.py:167: AssertionError |
_____________ test_nominal_harmonic_order_convergence_is_complete ______________ |
def test_nominal_harmonic_order_convergence_is_complete() -> None: |
> assert_convergence(load_bundle(ROOT, NOMINAL_CONFIG, NOMINAL_SAMPLES)) |
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
test_outputs.py:1146: |
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ |
output_dir = PosixPath('/root') |
config_path = PosixPath('/root/coupled_floquet_config.json') |
sample_path = PosixPath('/root/dynamic_matrix_samples.npz') |
def load_bundle(output_dir: Path, config_path: Path, sample_path: Path) -> Bundle: |
array_path = output_dir / "floquet_modes.npz" |
result_path = output_dir / "result.json" |
convergence_path = output_dir / "convergence.json" |
> assert array_path.is_file(), f"missing {array_path}" |
E AssertionError: missing /root/floquet_modes.npz |
E assert False |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 44