Skip to content

Commit 4f5e4cf

Browse files
committed
🔧 Enable localbox tests
1 parent ab04346 commit 4f5e4cf

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/general_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

1818
def run_sync(codebox: CodeBox) -> bool:
@@ -83,4 +83,4 @@ async def run_async(codebox: CodeBox) -> bool:
8383

8484
if __name__ == "__main__":
8585
test_codebox()
86-
# test_localbox()
86+
test_localbox()

0 commit comments

Comments
 (0)