We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2d7670 commit 81150fdCopy full SHA for 81150fd
.github/workflows/build-windows.yml
@@ -276,7 +276,8 @@ jobs:
276
277
# Run rapidcheck tests as their own process so we can see the random seed for each
278
"$env:BUILD_BUILDDIRECTORY\test\tiledb_unit.exe --list-tests [rapidcheck] --verbosity quiet" | Foreach-Object {
279
- $rapidcheck = "$env:BUILD_BUILDDIRECTORY\test\tiledb_unit.exe $_"
+ $rapidcheck = "$env:BUILD_BUILDDIRECTORY\test\tiledb_unit.exe '$_'"
280
+ Write-Host "cmds: '$rapidcheck'"
281
Invoke-Expression $rapidcheck
282
if ($LastExitCode -ne 0) {
283
Write-Host "Rapidcheck test \"$_\" failed with exit status: " $LastExitCode
0 commit comments