This commit is contained in:
Kovid Goyal
2022-09-21 23:52:33 +05:30
parent c07dc220a8
commit ff4353b209
2 changed files with 5 additions and 4 deletions

View File

@@ -155,7 +155,7 @@ def run_go(packages: Set[str], names: str) -> 'subprocess.Popen[bytes]':
def reduce_go_pkgs(module: str, names: Sequence[str]) -> Set[str]:
if not go_exe():
print('Skipping Go tests as go exe not found', file=sys.stderr)
return
return set()
go_packages, go_functions = find_testable_go_packages()
if module:
go_packages &= {module}