Skip to content

Commit a099858

Browse files
Fix typo: IncludeAllTestFrameworks in hotfix branches (#9019)
## Summary of changes There is a typo that prevents setting IncludeAllTestFrameworks to true in hotfix branches. ## Reason for change ## Implementation details ## Test coverage ## Other details <!-- Fixes #{issue} --> <!-- ⚠️ Note: Where possible, please obtain 2 approvals prior to merging. Unless CODEOWNERS specifies otherwise, for external teams it is typically best to have one review from a team member, and one review from apm-dotnet. Trivial changes do not require 2 reviews. MergeQueue is NOT enabled in this repository. If you have write access to the repo, the PR has 1-2 approvals (see above), and all of the required checks have passed, you can use the Squash and Merge button to merge the PR. If you don't have write access, or you need help, reach out in the #apm-dotnet channel in Slack. -->
1 parent 13aa3a5 commit a099858

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.azure-pipelines/ultimate-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ variables:
121121
DD_INSTRUMENTATION_TELEMETRY_ENABLED: 0
122122
NUKE_TELEMETRY_OPTOUT: 1
123123
# Include all test frameworks when (variable is set) OR ((running on master/release/hotfix) and (NOT scheduled build)),
124-
IncludeAllTestFrameworks: $[or(eq(variables['run_all_test_frameworks'], 'true'), and(or(in(variables['Build.SourceBranch'], 'refs/heads/master', 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/hostfix/')), not(eq(variables['Build.Reason'], 'Schedule'))))]
124+
IncludeAllTestFrameworks: $[or(eq(variables['run_all_test_frameworks'], 'true'), and(or(in(variables['Build.SourceBranch'], 'refs/heads/master', 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/hotfix/')), not(eq(variables['Build.Reason'], 'Schedule'))))]
125125
IntegrationTestSampleName: $(TEST_SAMPLE_NAME)
126126
IntegrationTestFilter: $(TEST_FILTER)
127127
DockerComposeProjectName: ddtrace-$(Build.BuildNumber)

0 commit comments

Comments
 (0)