mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-07-18 13:44:21 +00:00
ci: skip server e2e tests on windows (#1126)
This commit is contained in:
parent
81ba48f455
commit
e5eaeb4634
1 changed files with 5 additions and 0 deletions
|
|
@ -60,5 +60,10 @@ export default defineConfig({
|
|||
test: {
|
||||
name: 'server',
|
||||
include: ['test/**/*.{test,e2e}.ts'],
|
||||
// The server e2e tests pull in the full agent-core tree, which makes module
|
||||
// import very slow on Windows runners and destabilizes the test-windows job
|
||||
// (flaky timeouts and worker crashes). Skip them on Windows; they still run
|
||||
// on the Linux/macOS `test` job.
|
||||
exclude: process.platform === 'win32' ? ['test/**/*.e2e.test.ts'] : [],
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue