Skip to content

Commit

Permalink
[DEBUG] Ensure deterministic test order.
Browse files Browse the repository at this point in the history
  • Loading branch information
lauxjpn committed Oct 13, 2023
1 parent f0287e2 commit cb70a5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,19 +141,19 @@ jobs:
shell: pwsh
run: |
$env:EFCoreJet_DefaultConnection = '${{ env.defaultConnection }}'
& '${{ env.dotnetExecutable }}' test .\test\EFCore.Jet.Data.Tests -c '${{ env.buildConfiguration }}' --no-build --logger trx --verbosity detailed --blame-hang-timeout 3m
& '${{ env.dotnetExecutable }}' test .\test\EFCore.Jet.Data.Tests -c '${{ env.buildConfiguration }}' -p:ParallelizeTestCollections=false -p:FixedTestOrder=true --logger trx --verbosity detailed --blame-hang-timeout 3m
- name: 'Run Tests: EFCore.Jet.FunctionalTests'
shell: pwsh
continue-on-error: true
run: |
$env:EFCoreJet_DefaultConnection = '${{ env.defaultConnection }}'
& '${{ env.dotnetExecutable }}' test .\test\EFCore.Jet.FunctionalTests -c '${{ env.buildConfiguration }}' --no-build --logger trx --verbosity detailed --blame-hang-timeout 3m
& '${{ env.dotnetExecutable }}' test .\test\EFCore.Jet.FunctionalTests -c '${{ env.buildConfiguration }}' -p:ParallelizeTestCollections=false -p:FixedTestOrder=true --logger trx --verbosity detailed --blame-hang-timeout 3m
exit 0
- name: 'Run Tests: EFCore.Jet.Tests'
shell: pwsh
run: |
$env:EFCoreJet_DefaultConnection = '${{ env.defaultConnection }}'
& '${{ env.dotnetExecutable }}' test .\test\EFCore.Jet.Tests -c '${{ env.buildConfiguration }}' --no-build --logger trx --verbosity detailed --blame-hang-timeout 3m
& '${{ env.dotnetExecutable }}' test .\test\EFCore.Jet.Tests -c '${{ env.buildConfiguration }}' -p:ParallelizeTestCollections=false -p:FixedTestOrder=true --logger trx --verbosity detailed --blame-hang-timeout 3m
NuGet:
needs: BuildAndTest
if: github.event_name == 'push' && github.repository == 'bubibubi/EntityFrameworkCore.Jet'
Expand Down

0 comments on commit cb70a5a

Please sign in to comment.