text
stringlengths
0
251
> analysis, _slopes, report = load_submission()
^^^^^^^^^^^^^^^^^
test_outputs.py:1959:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test_outputs.py:762: in load_submission
read_csv(ROOT / "spectrum_analysis.csv"),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:126: in read_csv
with path.open(newline="", encoding="utf-8") as handle:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = PosixPath('/root/spectrum_analysis.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/spectrum_analysis.csv'
/usr/local/lib/python3.12/pathlib.py:1013: FileNotFoundError
_______ test_all_channel_interval_statistics_match_independent_reduction _______
def test_all_channel_interval_statistics_match_independent_reduction() -> None:
> analysis, _slopes, _report = load_submission()
^^^^^^^^^^^^^^^^^
test_outputs.py:1985:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test_outputs.py:762: in load_submission
read_csv(ROOT / "spectrum_analysis.csv"),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:126: in read_csv
with path.open(newline="", encoding="utf-8") as handle:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = PosixPath('/root/spectrum_analysis.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/spectrum_analysis.csv'
/usr/local/lib/python3.12/pathlib.py:1013: FileNotFoundError
__________ test_background_subtraction_uncertainty_and_fit_membership __________
def test_background_subtraction_uncertainty_and_fit_membership() -> None:
> analysis, _slopes, _report = load_submission()
^^^^^^^^^^^^^^^^^
test_outputs.py:2013:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
test_outputs.py:762: in load_submission
read_csv(ROOT / "spectrum_analysis.csv"),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
test_outputs.py:126: in read_csv
with path.open(newline="", encoding="utf-8") as handle:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = PosixPath('/root/spectrum_analysis.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/spectrum_analysis.csv'
/usr/local/lib/python3.12/pathlib.py:1013: FileNotFoundError
_____________ test_weighted_tail_fit_matches_independent_solution ______________
def test_weighted_tail_fit_matches_independent_solution() -> None:
> _analysis, _slopes, report = load_submission()
^^^^^^^^^^^^^^^^^
test_outputs.py:2039: