text
stringlengths
0
90
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/result.json').is_file
/verifier/test_outputs.py:208: AssertionError
_____________________ test_reported_periods_reproduce_data _____________________
def test_reported_periods_reproduce_data():
"""Independent reconstruction: at the reported (P, e) the verifier fits phases,
amplitudes and gamma itself; the weighted residual must sit at the noise floor."""
for name in FILES:
> e, P, K, ecc, g = _sys(name)
^^^^^^^^^^
/verifier/test_outputs.py:338:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/verifier/test_outputs.py:216: in _sys
sysd = submission()["systems"]
^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submission():
> assert RESULT.is_file(), "missing /root/result.json"
E AssertionError: missing /root/result.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/result.json').is_file
/verifier/test_outputs.py:208: AssertionError
____________________ test_independent_amplitude_consistency ____________________
def test_independent_amplitude_consistency():
"""The reported K must match the amplitude implied by the data at the reported
(P, e) (a different code path). Catches fabricated amplitudes."""
for name in FILES:
> e, P, K, ecc, g = _sys(name)
^^^^^^^^^^
/verifier/test_outputs.py:351:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/verifier/test_outputs.py:216: in _sys
sysd = submission()["systems"]
^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submission():
> assert RESULT.is_file(), "missing /root/result.json"
E AssertionError: missing /root/result.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/result.json').is_file
/verifier/test_outputs.py:208: AssertionError
_______________________ test_not_cross_system_identical ________________________
def test_not_cross_system_identical():
"""Reject a submission that reports the same orbit(s) across systems."""
vecs = []
for name in FILES:
> e, P, K, ecc, g = _sys(name)
^^^^^^^^^^
/verifier/test_outputs.py:365:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/verifier/test_outputs.py:216: in _sys
sysd = submission()["systems"]
^^^^^^^^^^^^
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submission():
> assert RESULT.is_file(), "missing /root/result.json"
E AssertionError: missing /root/result.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/result.json').is_file
/verifier/test_outputs.py:208: AssertionError
___________________________ test_summary_consistent ____________________________
def test_summary_consistent():
> data = submission()
^^^^^^^^^^^^
/verifier/test_outputs.py:373:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
@functools.lru_cache(maxsize=1)
def submission():
> assert RESULT.is_file(), "missing /root/result.json"
E AssertionError: missing /root/result.json
E assert False
E + where False = is_file()
E + where is_file = PosixPath('/root/result.json').is_file
/verifier/test_outputs.py:208: AssertionError
____________________________ test_jitter_recovered _____________________________