From a6b2d278389bb6938e79bb539808db9f3a2234f3 Mon Sep 17 00:00:00 2001 From: Wilson Bilkovich Date: Wed, 12 Mar 2025 13:28:53 -0400 Subject: [PATCH] Remove MacOS-ism, whoops. --- devscripts/run_coverage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devscripts/run_coverage.py b/devscripts/run_coverage.py index 54f7e71049..272c34d928 100755 --- a/devscripts/run_coverage.py +++ b/devscripts/run_coverage.py @@ -94,7 +94,7 @@ def generate_xml_report(): concurrent.futures.wait([html_future, xml_future]) print(f'\nCoverage reports saved to {cov_dir.as_posix()}') - print(f'HTML report: open {cov_dir.as_posix()}/html/index.html') + print(f'HTML report: {cov_dir.as_posix()}/html/index.html') return result.returncode except subprocess.CalledProcessError as e: print(f'Error running coverage: {e}')