ci: fix test paths in build-windows.ps1

This commit is contained in:
Eric Wasylishen 2022-09-25 00:12:32 -06:00
parent 460a30bbac
commit 363f337e17
1 changed files with 2 additions and 3 deletions

View File

@ -32,16 +32,15 @@ if ( $? -eq $false ) {
throw "package failed"
}
.\tests\Release\tests.exe
.\tests\tests.exe
if ( $? -eq $false ) {
throw "tests failed"
}
# run hidden tests (releaseonly)
.\tests\Release\tests.exe [.]
.\tests\tests.exe [.]
if ( $? -eq $false ) {
throw "tests [.] failed"
}