MCPcopy Create free account
hub / github.com/CodeClash-ai/CodeClash / load_runtime_module

Function load_runtime_module

tests/arenas/test_bomberland.py:17–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

15
16
17def load_runtime_module():
18 runtime_path = Path(__file__).parents[2] / "codeclash/arenas/bomberland/runtime/run_bomberland.py"
19 spec = importlib.util.spec_from_file_location("run_bomberland_test", runtime_path)
20 module = importlib.util.module_from_spec(spec)
21 spec.loader.exec_module(module)
22 return module
23
24
25class TestBomberlandValidation:

Calls

no outgoing calls

Tested by

no test coverage detected