diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2020-01-26 19:03:43 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-26 19:03:43 -0800 |
| commit | b5daee7b8faaa00b83eb17ad231b8dbc417f628c (patch) | |
| tree | 4f2150ee9703be7ed7c7ea4bd56d21f3eca80eaf /ci/build.ps1 | |
| parent | 88f133c30d4b46e371f0cdb0797113cbbca9cc59 (diff) | |
| parent | 1c3ca4f18fdc403813d8959b49626ac1c99e2c59 (diff) | |
| download | rneovim-b5daee7b8faaa00b83eb17ad231b8dbc417f628c.tar.gz rneovim-b5daee7b8faaa00b83eb17ad231b8dbc417f628c.tar.bz2 rneovim-b5daee7b8faaa00b83eb17ad231b8dbc417f628c.zip | |
Merge #7836 'session: restore same :terminal buf split windows'
Diffstat (limited to 'ci/build.ps1')
| -rw-r--r-- | ci/build.ps1 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 627dc69e88..a7a456f67a 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -173,6 +173,9 @@ if (-not $NoTests) { # Functional tests # The $LastExitCode from MSBuild can't be trusted $failed = $false + + # Run only this test file: + # $env:TEST_FILE = "test\functional\foo.lua" cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs 2>&1 | foreach { $failed = $failed -or $_ -match 'functional tests failed with error'; $_ } |