From 6d26a96f222ca0bcc0e7458388b6681e944cb3dc Mon Sep 17 00:00:00 2001 From: Chetanya <95761876+chetanyagoyal@users.noreply.github.com> Date: Wed, 15 Nov 2023 14:46:46 +0530 Subject: [PATCH] remove extra arg from simulation condition check --- .github/scripts/parse_rpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/parse_rpt.py b/.github/scripts/parse_rpt.py index d8de6d10e..e01f62d03 100644 --- a/.github/scripts/parse_rpt.py +++ b/.github/scripts/parse_rpt.py @@ -111,7 +111,7 @@ else: print("Flow check failed!") -if len(sys.argv) == 1 and sys.argv[1] == "sky130hd_temp_full": +if len(sys.argv) == 1: result_filename = "work/prePEX_sim_result" # might remove from check or need to implement different logic later if sim outputs change due to downstream changes sim_state_filename = "work/sim_state_file.txt"