We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af6bad commit d176e59Copy full SHA for d176e59
scan.go
@@ -98,11 +98,12 @@ func WithTrackerFactory(trackerFactory scan.TrackerFactory) OptionFunc {
98
99
type AnalysisOption func(*analysis.AnalysisConfig)
100
101
-func ReportLocalTest(projectName string, targetName string) AnalysisOption {
+func ReportLocalTest(projectName string, targetName string, targetReference string) AnalysisOption {
102
return func(c *analysis.AnalysisConfig) {
103
c.Report = true
104
c.ProjectName = &projectName
105
c.TargetName = &targetName
106
+ c.TargetReference = &targetReference
107
}
108
109
0 commit comments