MCPcopy Create free account
hub / github.com/argotorg/solidity / run_test_scripts

Function run_test_scripts

test/external_tests.py:48–54  ·  view source on GitHub ↗
(solc_binary_type: str, solc_binary_path: Path, tests: dict)

Source from the content-addressed store, hash-verified

46
47
48def run_test_scripts(solc_binary_type: str, solc_binary_path: Path, tests: dict):
49 for test_name, test_script_path in tests.items():
50 print(f"Running {test_name} external test...")
51 subprocess.run(
52 [test_script_path, solc_binary_type, solc_binary_path],
53 check=True
54 )
55
56
57def run_external_tests(args: dict):

Callers 1

run_external_testsFunction · 0.85

Calls 1

runMethod · 0.45

Tested by

no test coverage detected