diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a2e74b..af29d46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - name: "Re-scaffold integration test migrations" shell: pwsh - run: .\tests\EFCore.ChangeTriggers.SqlServer.Tests.Integration\readd-all-migrations.ps1 -verbose + run: .\tests\EFCore.ChangeTriggers.SqlServer.Tests.Integration\readd-all-migrations.ps1 - name: Build solution run: dotnet build --configuration $BUILD_CONFIG diff --git a/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/readd-all-migrations.ps1 b/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/readd-all-migrations.ps1 index 5e994f5..cc4cd3b 100644 --- a/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/readd-all-migrations.ps1 +++ b/tests/EFCore.ChangeTriggers.SqlServer.Tests.Integration/readd-all-migrations.ps1 @@ -1,7 +1,9 @@ $global:NoBuild = $false $persistenceDirs = Get-ChildItem -Recurse -Directory | Where-Object { $_.FullName -like "$PSScriptRoot\*Persistence" } -Write-Output "Found $($persistenceDirs.Count) directories to process..." +Write-Output $PSScriptRoot + +Write-Host "Found $($persistenceDirs.Count) directories to process..." # Delete current migrations before rebuild foreach ($persistenceDir in $persistenceDirs) {