diff --git a/.github/scripts/run_compare50.py b/.github/scripts/run_compare50.py index 1b71e6c2ae..a0e316f728 100644 --- a/.github/scripts/run_compare50.py +++ b/.github/scripts/run_compare50.py @@ -2,12 +2,6 @@ import glob trimmed_files = glob.glob('temp/*.js') -print("Files to compare:", trimmed_files) +result = subprocess.run(['compare50', *trimmed_files, 'sprig/games/'], capture_output=True, text=True) -try: - result = subprocess.run(['compare50', *trimmed_files, 'sprig/games/'], capture_output=True, text=True, timeout=600) - print(result.stdout) - if result.stderr: - print("Error:", result.stderr) -except subprocess.TimeoutExpired: - print("compare50 took too long to run and was terminated.") \ No newline at end of file +print(result.stdout) \ No newline at end of file