--- Final Solver (used for performance test) ---
No solver.py found at /app/solver.py
--- End Solver ---
Running performance test...
============================= test session starts ==============================
platform linux -- Python 3.12.13, pytest-9.0.2, pluggy-1.6.0
rootdir: /tests
plugins: anyio-4.13.0, jaxtyping-0.3.9
collected 3 items

../tests/test_outputs.py FEE

==================================== ERRORS ====================================
____________________ ERROR at setup of test_solver_validity ____________________

    @pytest.fixture(scope="module")
    def solver_instance() -> Any:
        """Loads the user's 'Solver' class from solver.py."""
        if not SOLVER_PATH.exists():
>           pytest.fail(f"Solver file not found at {SOLVER_PATH}")
E           Failed: Solver file not found at /app/solver.py

/tests/test_outputs.py:43: Failed
____________________ ERROR at setup of test_solver_speedup _____________________

    @pytest.fixture(scope="module")
    def solver_instance() -> Any:
        """Loads the user's 'Solver' class from solver.py."""
        if not SOLVER_PATH.exists():
>           pytest.fail(f"Solver file not found at {SOLVER_PATH}")
E           Failed: Solver file not found at /app/solver.py

/tests/test_outputs.py:43: Failed
=================================== FAILURES ===================================
______________________________ test_solver_exists ______________________________

    def test_solver_exists():
        """Checks if the solver.py file exists."""
>       assert SOLVER_PATH.is_file(), f"Solver file not found at {SOLVER_PATH}"
E       AssertionError: Solver file not found at /app/solver.py
E       assert False
E        +  where False = is_file()
E        +    where is_file = PosixPath('/app/solver.py').is_file

/tests/test_outputs.py:194: AssertionError
=========================== short test summary info ============================
ERROR ../tests/test_outputs.py::test_solver_validity - Failed: Solver file no...
ERROR ../tests/test_outputs.py::test_solver_speedup - Failed: Solver file not...
FAILED ../tests/test_outputs.py::test_solver_exists - AssertionError: Solver ...
========================= 1 failed, 2 errors in 0.26s ==========================
