[rocprof-compute] update coverage to 81.1% (#826)

* update coverage to 81.1%

* Update coverage to latest develop
Cette révision appartient à :
jamessiddeley-amd
2025-09-04 14:21:03 -04:00
révisé par GitHub
Parent c4537e8050
révision 5a85df8f31
2 fichiers modifiés avec 1843 ajouts et 1446 suppressions
Fichier diff supprimé car celui-ci est trop grand Voir la Diff
+7 -8
Voir le fichier
@@ -97,10 +97,10 @@ ctest_submit(PARTS Coverage RETRY_COUNT 3 RETRY_DELAY 5)
def main():
if not os.getenv("CI"):
print("WARNING: CDash upload should normally only be done from CI/CD")
response = input("Continue anyway? (y/N): ")
if response.lower() != "y":
print("Aborted.")
return 1
response = input("Continue anyway? (y/N): ")
if response.lower() != "y":
print("Aborted.")
return 1
parser = argparse.ArgumentParser(
description="Upload coverage XML to CDash for rocprofiler-compute"
@@ -232,11 +232,10 @@ def main():
return result.returncode
print("\n✅ Coverage successfully uploaded to CDash!")
print(
f"View results at: {
args.submit_url.replace('/submit.php?project=', '/index.php?project=')
}"
cdash_url = args.submit_url.replace(
"/submit.php?project=", "/index.php?project="
)
print(f"View results at: {cdash_url}")
return 0
except Exception as e: