MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / main

Function main

scripts/run-test-wave.py:430–442  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

428
429
430def main() -> int:
431 args = parse_args()
432 try:
433 if os.environ.get("MSYSTEM") and os.name != "nt":
434 raise RuntimeError(
435 "Windows/MSYS test runs require the native MinGW Python "
436 "(os.name must be 'nt')"
437 )
438 run_wave(args)
439 except (OSError, RuntimeError) as exc:
440 print(f"FAIL: parallel scheduler infrastructure error: {exc}", file=sys.stderr)
441 return 2
442 return 0
443
444
445if __name__ == "__main__":

Callers 1

run-test-wave.pyFile · 0.70

Calls 2

parse_argsFunction · 0.85
run_waveFunction · 0.85

Tested by

no test coverage detected