()
| 4 | |
| 5 | |
| 6 | def test_codebox() -> None: |
| 7 | session = CodeInterpreterSession() |
| 8 | assert run_sync(session), "Failed to run sync CodeInterpreterSession remotely" |
| 9 | assert asyncio.run( |
| 10 | run_async(session) |
| 11 | ), "Failed to run async CodeInterpreterSession remotely" |
| 12 | |
| 13 | |
| 14 | def test_localbox() -> None: |
no test coverage detected