MCPcopy Index your code
hub / github.com/Codeplain-ai/codeplain / make_args

Function make_args

tests/test_telemetry.py:35–44  ·  view source on GitHub ↗
(**overrides)

Source from the content-addressed store, hash-verified

33
34
35def make_args(**overrides):
36 args = Namespace(
37 headless=False,
38 unittests_script="run_unittests.sh",
39 conformance_tests_script=None,
40 prepare_environment_script=None,
41 )
42 for key, value in overrides.items():
43 setattr(args, key, value)
44 return args
45
46
47@pytest.fixture(autouse=True)

Calls

no outgoing calls

Tested by

no test coverage detected