@@ -248,6 +248,8 @@ def compare_command_logic(args, project_name, project_version):
248
248
testname_regex = args .testname_regex
249
249
auto_approve = args .auto_approve
250
250
running_platform = args .running_platform
251
+ baseline_target_version = args .baseline_target_version
252
+ comparison_target_version = args .comparison_target_version
251
253
252
254
if running_platform is not None :
253
255
logging .info (
@@ -306,6 +308,8 @@ def compare_command_logic(args, project_name, project_version):
306
308
to_ts_ms ,
307
309
use_metric_context_path ,
308
310
running_platform ,
311
+ baseline_target_version ,
312
+ comparison_target_version ,
309
313
)
310
314
prepare_regression_comment (
311
315
auto_approve ,
@@ -529,6 +533,8 @@ def compute_regression_table(
529
533
to_ts_ms = None ,
530
534
use_metric_context_path = None ,
531
535
running_platform = None ,
536
+ baseline_target_version = None ,
537
+ comparison_target_version = None ,
532
538
):
533
539
START_TIME_NOW_UTC , _ , _ = get_start_time_vars ()
534
540
START_TIME_LAST_MONTH_UTC = START_TIME_NOW_UTC - datetime .timedelta (days = 31 )
@@ -552,7 +558,11 @@ def compute_regression_table(
552
558
comparison_branch ,
553
559
baseline_tag ,
554
560
comparison_tag ,
561
+ baseline_target_version ,
562
+ comparison_target_version ,
555
563
)
564
+ logging .info (f"Using baseline filter { by_str_baseline } ={ baseline_str } " )
565
+ logging .info (f"Using comparison filter { by_str_comparison } ={ comparison_str } " )
556
566
(
557
567
prefix ,
558
568
testcases_setname ,
@@ -712,6 +722,8 @@ def get_by_strings(
712
722
comparison_branch ,
713
723
baseline_tag ,
714
724
comparison_tag ,
725
+ baseline_target_version = None ,
726
+ comparison_target_version = None ,
715
727
):
716
728
baseline_covered = False
717
729
comparison_covered = False
@@ -738,6 +750,16 @@ def get_by_strings(
738
750
by_str_baseline = "version"
739
751
baseline_str = baseline_tag
740
752
753
+ if baseline_target_version is not None :
754
+ if comparison_covered :
755
+ logging .error (
756
+ "--baseline-branch, --baseline-tag and --baseline-target-version are mutually exclusive. Pick one..."
757
+ )
758
+ exit (1 )
759
+ baseline_covered = True
760
+ by_str_baseline = "target+version"
761
+ baseline_str = baseline_target_version
762
+
741
763
if comparison_tag is not None :
742
764
# check if we had already covered comparison
743
765
if comparison_covered :
@@ -748,16 +770,27 @@ def get_by_strings(
748
770
comparison_covered = True
749
771
by_str_comparison = "version"
750
772
comparison_str = comparison_tag
773
+ if comparison_target_version is not None :
774
+ # check if we had already covered comparison
775
+ if comparison_covered :
776
+ logging .error (
777
+ "--comparison-branch, --comparison-tag, and --comparison-target-table are mutually exclusive. Pick one..."
778
+ )
779
+ exit (1 )
780
+ comparison_covered = True
781
+ by_str_comparison = "target+version"
782
+ comparison_str = comparison_target_version
751
783
752
784
if baseline_covered is False :
753
785
logging .error (
754
- "You need to provider either " + "( --baseline-branch or --baseline-tag ) "
786
+ "You need to provider either "
787
+ + "( --baseline-branch, --baseline-tag, or --baseline-target-version ) "
755
788
)
756
789
exit (1 )
757
790
if comparison_covered is False :
758
791
logging .error (
759
792
"You need to provider either "
760
- + "( --comparison-branch or --comparison-tag ) "
793
+ + "( --comparison-branch, --comparison-tag, or --comparison-target-version ) "
761
794
)
762
795
exit (1 )
763
796
return baseline_str , by_str_baseline , comparison_str , by_str_comparison
@@ -822,6 +855,7 @@ def from_rts_to_regression_table(
822
855
filters_comparison = [
823
856
"{}={}" .format (by_str_comparison , comparison_str ),
824
857
"metric={}" .format (metric_name ),
858
+ "hash==" ,
825
859
"{}={}" .format (test_filter , test_name ),
826
860
"deployment_name={}" .format (comparison_deployment_name ),
827
861
"triggering_env={}" .format (tf_triggering_env ),
0 commit comments