(solc_binary_type: str, solc_binary_path: Path, tests: dict)
| 46 | |
| 47 | |
| 48 | def 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 | |
| 57 | def run_external_tests(args: dict): |
no test coverage detected