()
| 15 | |
| 16 | |
| 17 | def 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 | |
| 25 | class TestBomberlandValidation: |
no outgoing calls
no test coverage detected