text
stringlengths
0
4.86k
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/verifier/test_outputs.py:720:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/verifier/test_outputs.py:314: in read_csv
with path.open(newline="", encoding="utf-8") as handle:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = PosixPath('/root/output/growth_budget.csv'), mode = 'r', buffering = -1
encoding = 'utf-8', errors = None, newline = ''
def open(self, mode='r', buffering=-1, encoding=None,
errors=None, newline=None):
"""
Open the file pointed to by this path and return a file object, as
the built-in open() function does.
"""
if "b" not in mode:
encoding = io.text_encoding(encoding)
> return io.open(self, mode, buffering, encoding, errors, newline)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E FileNotFoundError: [Errno 2] No such file or directory: '/root/output/growth_budget.csv'
/usr/local/lib/python3.12/pathlib.py:1013: FileNotFoundError
________ test_public_runaway_growth_ladder_is_closed_and_spine_coupled _________
def test_public_runaway_growth_ladder_is_closed_and_spine_coupled() -> None:
instance = read_json(PUBLIC_INSTANCE)
history, _ = canonical_history(PUBLIC_HISTORY)
mask, center, _, _ = expected_decomposition(history, instance)
expected_rows, total_collision_mass = expected_runaway(history, mask, center)
> rows = read_csv(OUTPUT / "runaway_growth.csv", RUNAWAY_COLUMNS)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/verifier/test_outputs.py:736:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/verifier/test_outputs.py:314: in read_csv
with path.open(newline="", encoding="utf-8") as handle:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = PosixPath('/root/output/runaway_growth.csv'), mode = 'r', buffering = -1
encoding = 'utf-8', errors = None, newline = ''
def open(self, mode='r', buffering=-1, encoding=None,
errors=None, newline=None):
"""
Open the file pointed to by this path and return a file object, as
the built-in open() function does.
"""
if "b" not in mode:
encoding = io.text_encoding(encoding)
> return io.open(self, mode, buffering, encoding, errors, newline)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E FileNotFoundError: [Errno 2] No such file or directory: '/root/output/runaway_growth.csv'
/usr/local/lib/python3.12/pathlib.py:1013: FileNotFoundError
______ test_public_remnant_scenarios_match_independent_analytic_solution _______
def test_public_remnant_scenarios_match_independent_analytic_solution() -> None:
instance = read_json(PUBLIC_INSTANCE)
history, _ = canonical_history(PUBLIC_HISTORY)
> rows = read_csv(OUTPUT / "remnant_scenarios.csv", REMNANT_COLUMNS)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/verifier/test_outputs.py:762:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/verifier/test_outputs.py:314: in read_csv
with path.open(newline="", encoding="utf-8") as handle:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = PosixPath('/root/output/remnant_scenarios.csv'), mode = 'r'
buffering = -1, encoding = 'utf-8', errors = None, newline = ''
def open(self, mode='r', buffering=-1, encoding=None,
errors=None, newline=None):
"""
Open the file pointed to by this path and return a file object, as
the built-in open() function does.
"""
if "b" not in mode:
encoding = io.text_encoding(encoding)
> return io.open(self, mode, buffering, encoding, errors, newline)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
E FileNotFoundError: [Errno 2] No such file or directory: '/root/output/remnant_scenarios.csv'
/usr/local/lib/python3.12/pathlib.py:1013: FileNotFoundError
____________ test_report_contains_auditable_physical_interpretation ____________
def test_report_contains_auditable_physical_interpretation() -> None:
> report = (OUTPUT / "report.md").read_text(encoding="utf-8").lower()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/verifier/test_outputs.py:776:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/local/lib/python3.12/pathlib.py:1027: in read_text
with self.open(mode='r', encoding=encoding, errors=errors) as f:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^