From b686dff08092faa73dcc24d5ba843067f024c91a Mon Sep 17 00:00:00 2001 From: Joel Timothy Oh Date: Sat, 11 May 2024 19:38:31 +0000 Subject: [PATCH] Test (entrypoint): Improve robustness of listing of test artifacts --- test/test.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test.ps1 b/test/test.ps1 index 83132a6..6046eb6 100644 --- a/test/test.ps1 +++ b/test/test.ps1 @@ -64,7 +64,10 @@ try { }catch { throw }finally { - Pop-Location "Listing test artifacts" | Write-Host + Push-Location "$(git rev-parse --show-toplevel)" git ls-files --others --exclude-standard + Pop-Location + + Pop-Location }