Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d5efe7e
Hot Reload test fix for non GQL schema changes
aaronburtle Dec 15, 2025
f39705c
timeout to 30 seconds
aaronburtle Dec 17, 2025
dc4ef4b
format
aaronburtle Dec 17, 2025
e01885e
format
aaronburtle Dec 17, 2025
a801164
add issue number to comment
aaronburtle Dec 17, 2025
2269787
Merge branch 'main' into dev/aaronburtle/HotReloadTestFix
aaronburtle Dec 17, 2025
52185c6
Merge branch 'main' into dev/aaronburtle/HotReloadTestFix
Aniruddh25 Dec 29, 2025
26bcce3
Merge branch 'main' into dev/aaronburtle/HotReloadTestFix
JerryNixon Jan 21, 2026
5c28677
Merge branch 'main' into dev/aaronburtle/HotReloadTestFix
RubenCerna2079 Jan 28, 2026
32cd946
Merge branch 'main' into dev/aaronburtle/HotReloadTestFix
aaronburtle Jan 28, 2026
75acf63
try using write lock to avoid race condition
aaronburtle Jan 28, 2026
3470174
Merge branch 'dev/aaronburtle/HotReloadTestFix' of github.com:Azure/d…
aaronburtle Jan 28, 2026
8b35158
adjust pipline timeouts
aaronburtle Jan 29, 2026
1652d56
Delete $tf directory
aaronburtle Jan 29, 2026
9c16c21
Delete test directory
aaronburtle Jan 29, 2026
d56128c
add new hotreload pipeline
aaronburtle Jan 29, 2026
f4dc47e
add new job
aaronburtle Jan 29, 2026
006fbab
Merge branch 'main' into dev/aaronburtle/HotReloadTestFix
aaronburtle Jan 29, 2026
d8ad3c5
class initialization change
aaronburtle Jan 29, 2026
a7677ae
Merge branch 'dev/aaronburtle/HotReloadTestFix' of github.com:Azure/d…
aaronburtle Jan 29, 2026
a68257e
move to 2nd task instead of job
aaronburtle Jan 29, 2026
2b7f9a6
remove unused job
aaronburtle Jan 29, 2026
9cfeb59
change task order
aaronburtle Jan 29, 2026
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
15 changes: 12 additions & 3 deletions .pipelines/mssql-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:
displayName: 'Run MsSql Integration Tests'
inputs:
command: test
arguments: '--filter "TestCategory=MsSql" --no-build --configuration $(buildConfiguration) --collect "XPlat Code coverage"'
arguments: '--filter "TestCategory=MsSql&FullyQualifiedName!~ConfigurationHotReloadTests" --no-build --configuration $(buildConfiguration) --collect "XPlat Code coverage"'
projects: '**/*Tests/*.csproj'

- task: CmdLine@2
Expand Down Expand Up @@ -246,11 +246,20 @@ jobs:
targetFiles: 'src/out/tests/*/dab-config.MsSql.json'

- task: DotNetCoreCLI@2
displayName: 'Run MsSql Integration Tests'
displayName: 'MsSql Integration Tests'
inputs:
command: test
arguments: '--filter "TestCategory=MsSql&FullyQualifiedName!~ConfigurationHotReloadTests" --no-build --configuration $(buildConfiguration) --collect "XPlat Code coverage"'
projects: '**/*Tests/*.csproj'


- task: DotNetCoreCLI@2
displayName: 'Hot-Reload Tests'
inputs:
command: test
arguments: '--filter "TestCategory=MsSql" --no-build --configuration $(buildConfiguration) --collect "XPlat Code coverage"'
arguments: '--filter "TestCategory=MsSql&FullyQualifiedName~ConfigurationHotReloadTests" --no-build --configuration $(buildConfiguration) --collect "XPlat Code coverage" --logger "console;verbosity=detailed"'
projects: '**/*Tests/*.csproj'
timeoutInMinutes: 45

- task: PublishCodeCoverageResults@1
displayName: 'Publish code coverage'
Expand Down
Loading
Loading