Skip to content

Commit

Permalink
testing nvim 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedric Halbronn committed May 16, 2024
1 parent 3c90337 commit 1cecf83
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:
# XXX: restore this once neovim tests work in CI
# os: [macos-latest, ubuntu-latest, windows-latest]
os: [windows-latest]
app_version: [stable]
# XXX - stable is 0.10.0 and only has nvim.exe (no nvim-qt.exe). Also locally it hangs on unskipped test
# and on CI, it fails on trying to tail the log and I don't know what is happening since didnt get a snapshot of CI yet
# to understand the error in nvim.exe (though probably need the nvim-qt.exe since nvim.exe won't show anything)
# app_version: [stable]
app_version: [v0.9.5]
# XXX: restore this once neovim tests work in CI
# include:
# - os: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions packages/test-harness/src/launchNeovimAndRunTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ export async function launchNeovimAndRunTests(extensionTestsPath: string) {
// const vscodeExecutablePath = await downloadAndUnzipVSCode(vscodeVersion);
// const [cli, ...args] =
// resolveCliArgsFromVSCodeExecutablePath(vscodeExecutablePath);
const cli = getEnvironmentVariableStrict("APP_PATH");
let cli = getEnvironmentVariableStrict("APP_PATH");
// Installed executable: C:\Users\runneradmin\nvim-stable\bin\nvim.exe
//cli = cli.replace("nvim.exe", "nvim-qt.exe");
cli = cli.replace("nvim.exe", "nvim-qt.exe");
/*
node:events:496
throw er; // Unhandled 'error' event
Expand Down

0 comments on commit 1cecf83

Please sign in to comment.