text
stringlengths
0
109
except OSError:
# File most likely does not exist
pass
else:
# XXX What about other special files? (sockets, devices...)
if stat.S_ISFIFO(st.st_mode):
fn = fn.path if isinstance(fn, os.DirEntry) else fn
raise SpecialFileError("`%s` is a named pipe" % fn)
if _WINDOWS and i == 0:
file_size = st.st_size
if not follow_symlinks and _islink(src):
os.symlink(os.readlink(src), dst)
else:
> with open(src, 'rb') as fsrc:
^^^^^^^^^^^^^^^
E FileNotFoundError: [Errno 2] No such file or directory: '/root/fit_stability_landscape.py'
/usr/local/lib/python3.12/shutil.py:260: FileNotFoundError
=========================== short test summary info ============================
ERROR ../app::test_public_artifact_and_input_contract[public_bundle0] - Asser...
ERROR ../app::test_serialized_models_reconstruct_every_prediction[public_bundle0]
ERROR ../app::test_energy_and_coupling_tables[public_bundle0] - AssertionErro...
ERROR ../app::test_bootstrap_arrays_and_percentile_intervals[public_bundle0]
ERROR ../app::test_hamming_diagnostics_are_data_derived[public_bundle0] - Ass...
ERROR ../app::test_optimizer_diagnostics_and_report[public_bundle0] - Asserti...
ERROR ../app::test_public_artifact_and_input_contract[public_bundle1] - Asser...
ERROR ../app::test_serialized_models_reconstruct_every_prediction[public_bundle1]
ERROR ../app::test_energy_and_coupling_tables[public_bundle1] - AssertionErro...
ERROR ../app::test_bootstrap_arrays_and_percentile_intervals[public_bundle1]
ERROR ../app::test_hamming_diagnostics_are_data_derived[public_bundle1] - Ass...
ERROR ../app::test_optimizer_diagnostics_and_report[public_bundle1] - Asserti...
ERROR ../app::test_cross_phenotype_comparison - AssertionError: assert (False)
ERROR ../app::test_hidden_replay_is_isolated_generalizes_and_ignores_test_labels
======================== 14 errors in 79.58s (0:01:19) =========================