Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
dc9fc02
Updating tests to retry after initial to reduce babysitting due to tr…
jestradaMS Aug 13, 2025
7cf3415
adding to missed task per comments in PR review.
jestradaMS Aug 13, 2025
e032ae2
Updating to custom powershell logic for handling retries in case test…
jestradaMS Aug 13, 2025
4ee0015
fixing syntax
jestradaMS Aug 13, 2025
053c3c4
Fixing issue with Invoke-Expression
jestradaMS Aug 13, 2025
806b87c
Fixing issues with handling complex command passed as params
jestradaMS Aug 13, 2025
3a8db59
Attempting another approach other than PS
jestradaMS Aug 13, 2025
41cffc8
fixing retry logic
jestradaMS Aug 13, 2025
d7185a4
Trying another approach for retry conditions
jestradaMS Aug 13, 2025
f424f6a
.....
jestradaMS Aug 13, 2025
19c3d9b
.......
jestradaMS Aug 13, 2025
3430b53
...
jestradaMS Aug 14, 2025
fe0167e
Add test retry framework
jestradaMS Aug 19, 2025
c56510f
Udpdating tests for retries and fixing bug in FhirClient
jestradaMS Aug 19, 2025
ba87ea3
Updating Import tests to use file vs. string builder
jestradaMS Aug 20, 2025
0d8516a
Adding timeout to retry test framework
jestradaMS Aug 20, 2025
0303181
trying change to e2e agent pool for windows
jestradaMS Aug 28, 2025
65a135e
Merge branch 'main' into users/jestrada/addretriestotests
jestradaMS Aug 28, 2025
a38a075
adding demands
jestradaMS Aug 28, 2025
cb9b908
Reverting back to linux
jestradaMS Aug 28, 2025
24dc7cd
increasing storage account sku to Premium_LRS for testing
jestradaMS Aug 28, 2025
f8c66d9
updating storage kind
jestradaMS Aug 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build/jobs/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ steps:
projects: '**/*UnitTests/*.csproj'
arguments: '--configuration $(buildConfiguration) --no-build --collect "XPlat Code Coverage" -s "$(build.sourcesDirectory)/CodeCoverage.runsettings" -v normal -f ${{parameters.targetBuildFramework}}'
testRunTitle: 'Unit Tests'
retryCountOnTaskFailure: 1
- task: reportgenerator@5
displayName: 'aggregate code coverage'
condition: succeededOrFailed()
Expand Down
1 change: 1 addition & 0 deletions build/jobs/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,4 @@ steps:
'AZURESUBSCRIPTION_TENANT_ID': $(AZURESUBSCRIPTION_TENANT_ID)
'AZURESUBSCRIPTION_SERVICE_CONNECTION_ID': $(AZURESUBSCRIPTION_SERVICE_CONNECTION_ID)
'SYSTEM_ACCESSTOKEN': $(System.AccessToken)
retryCountOnTaskFailure: 1
2 changes: 2 additions & 0 deletions build/jobs/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ jobs:
arguments: '"$(Agent.TempDirectory)/IntegrationTests/**/*${{ parameters.version }}.Tests.Integration*.dll" --filter DisplayName!~SqlServer -v normal'
workingDirectory: "$(System.ArtifactsDirectory)"
testRunTitle: '${{ parameters.version }} Integration'
retryCountOnTaskFailure: 1
env:
'CosmosDb__Host': $(CosmosDb--Host)
'FhirServer__ResourceManager__DataStoreResourceId': '$(DataStoreResourceId)'
Expand Down Expand Up @@ -124,6 +125,7 @@ jobs:
'AZURESUBSCRIPTION_TENANT_ID': '$(AZURESUBSCRIPTION_TENANT_ID)'
'AZURESUBSCRIPTION_SERVICE_CONNECTION_ID': '$(AZURESUBSCRIPTION_SERVICE_CONNECTION_ID)'
'SYSTEM_ACCESSTOKEN': $(System.AccessToken)
retryCountOnTaskFailure: 1

- job: 'cosmosE2eTests'
dependsOn: []
Expand Down
Loading