diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-15 12:41:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 12:41:00 +0800 |
commit | 6264aa521ec5f1d07b35e6744060a259841545e6 (patch) | |
tree | d33d1aeeca62fba4db3a76f15606223771a2140f | |
parent | 93ae1838104bdbf68d0c4ef13f7081a1b8da2ad3 (diff) | |
download | rneovim-6264aa521ec5f1d07b35e6744060a259841545e6.tar.gz rneovim-6264aa521ec5f1d07b35e6744060a259841545e6.tar.bz2 rneovim-6264aa521ec5f1d07b35e6744060a259841545e6.zip |
ci(build.ps1): restore comment removed in #19336
-rw-r--r-- | ci/build.ps1 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 6c042f9116..6709a9507a 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -101,6 +101,8 @@ function Test { # The $LastExitCode from MSBuild can't be trusted
$failed = $false
+ # Run only this test file:
+ # $env:TEST_FILE = "test\functional\foo.lua"
cmake --build $buildDir --target functionaltest 2>&1 |
ForEach-Object { $failed = $failed -or
$_ -match 'functional tests failed with error'; $_ }
|