Skip to content

Commit

Permalink
[Internal] Pipelines: Adds all tests that are ran during release pipe…
Browse files Browse the repository at this point in the history
…lines to PR runs (#5012)

# Pull Request Template

## Description

As we have been experiencing issues with our release pipelines, we are
currently going to run all tests run in those pipelines in every PR to
catch potential errors and cut down on the number of flakey tests. For
publicly submitted PRs, please create an issue with any flaky tests with
the label `flaky tests`.

## Type of change

Please delete options that are not relevant.

- [] Bug fix (non-breaking change which fixes an issue)
- [] New feature (non-breaking change which adds functionality)
- [] Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- [] This change requires a documentation update

## Closing issues

To automatically close an issue: closes #IssueNumber
  • Loading branch information
NaluTripician authored Feb 11, 2025
1 parent 193e0d8 commit a698ac6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ pr:

variables:
DebugArguments: ' --filter "TestCategory!=Flaky & TestCategory!=Quarantine & TestCategory!=Functional" --verbosity normal '
ReleaseArguments: ' --filter "TestCategory!=Flaky & TestCategory!=Quarantine & TestCategory!=Functional" --verbosity normal '
ReleaseArguments: ' --filter "TestCategory!=Quarantine" --verbosity normal '
VmImage: windows-latest # https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops


Expand Down Expand Up @@ -52,8 +52,8 @@ jobs:
VmImage: $(VmImage)
MultiRegionConnectionString: $(COSMOSDB_MULTI_REGION)
MultiRegionMultiMasterConnectionString: $(COSMOSDB_MULTIMASTER)
IncludePerformance: false
IncludeCoverage: false
IncludePerformance: true
IncludeCoverage: true

- template: templates/build-internal.yml
parameters:
Expand Down

0 comments on commit a698ac6

Please sign in to comment.