File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ def test_codebox():
99 assert asyncio .run (run_async (codebox )), "Failed to run async codebox remotely"
1010
1111
12- # def test_localbox():
13- # codebox = CodeBox(local=True)
14- # assert run_sync(codebox), "Failed to run sync codebox locally"
15- # assert asyncio.run(run_async(codebox)), "Failed to run async codebox locally"
12+ def test_localbox ():
13+ codebox = CodeBox (local = True )
14+ assert run_sync (codebox ), "Failed to run sync codebox locally"
15+ assert asyncio .run (run_async (codebox )), "Failed to run async codebox locally"
1616
1717
1818def run_sync (codebox : CodeBox ) -> bool :
@@ -83,4 +83,4 @@ async def run_async(codebox: CodeBox) -> bool:
8383
8484if __name__ == "__main__" :
8585 test_codebox ()
86- # test_localbox()
86+ test_localbox ()
You can’t perform that action at this time.
0 commit comments