diff --git a/checks/evaluation/ci_tests.go b/checks/evaluation/ci_tests.go index b5d13b304e4..6954995d1e6 100644 --- a/checks/evaluation/ci_tests.go +++ b/checks/evaluation/ci_tests.go @@ -128,7 +128,7 @@ func isTest(s string) bool { for _, pattern := range []string{ "appveyor", "buildkite", "circleci", "e2e", "github-actions", "jenkins", "mergeable", "packit-as-a-service", "semaphoreci", "test", "travis-ci", - "flutter-dashboard", "Cirrus CI", + "flutter-dashboard", "Cirrus CI", "azure-pipelines", } { if strings.Contains(l, pattern) { return true diff --git a/checks/evaluation/ci_tests_test.go b/checks/evaluation/ci_tests_test.go index edf949f8baa..c7f630b24d3 100644 --- a/checks/evaluation/ci_tests_test.go +++ b/checks/evaluation/ci_tests_test.go @@ -101,6 +101,13 @@ func Test_isTest(t *testing.T) { }, want: true, }, + { + name: "azure-pipelines", + args: args{ + s: "azure-pipelines", + }, + want: true, + }, { name: "non-existing", args: args{