This is an automated email from the ASF dual-hosted git repository.

ronny pushed a commit to branch dev/dbg-win-ci
in repository https://gitbox.apache.org/repos/asf/couchdb-glazier.git

commit b480055a8429457be7094deed7610b1814fcab03
Author: Ronny Berndt <[email protected]>
AuthorDate: Thu Jan 29 11:10:57 2026 +0100

    dev: Adding debug output
---
 bin/exclude_tests_win.ps1 | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/bin/exclude_tests_win.ps1 b/bin/exclude_tests_win.ps1
index bf8451f..830d3e2 100644
--- a/bin/exclude_tests_win.ps1
+++ b/bin/exclude_tests_win.ps1
@@ -53,12 +53,12 @@ $excludeTests = @(
 function renameFile ([string]$file, [bool]$exclude = $true) {
     if($exclude) {
         if( Test-Path -path $file ) {
-            Write-Host "$file is excluded during testing..."
+            Write-Output "$file is excluded during testing..."
             Rename-Item -path $file -NewName "$file.old"
         }
     } else {
         if( Test-Path -path "$file.old" ) {
-            Write-Host "$file is considered during testing..."
+            Write-Output "$file is considered during testing..."
             Rename-Item -path "$file.old" -NewName "$file"
         }
     }
@@ -66,6 +66,7 @@ function renameFile ([string]$file, [bool]$exclude = $true) {
 
 foreach ($test in $excludeTests)
 {
+    Write-Out "Path: $Path"
     $file = Join-Path (Resolve-Path $Path) $test
     if($IncludeTests) {
         renameFile $file $false

Reply via email to