Skip to content

Commit

Permalink
don't run shared-internals tests in the matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Oct 11, 2023
1 parent 555ee42 commit 1eed1b7
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions test-packages/support/suite-setup-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ async function githubMatrix() {
let { include: suites } = JSON.parse(stdout) as { include: { name: string; command: string }[]; name: string[] };

let include = [
...suites.map(s => ({
name: `${s.name} ubuntu`,
os: 'ubuntu',
command: s.command,
dir,
})),
...suites
.filter(s => s.name !== 'shared-internals') // shared-internals are tested independenly on node 12
.map(s => ({
name: `${s.name} ubuntu`,
os: 'ubuntu',
command: s.command,
dir,
})),
...suites
.filter(s => s.name !== 'shared-internals') // shared-internals are tested independenly on node 12
.filter(s => s.name !== 'node') // TODO: node tests do not work under windows yet
.map(s => ({
name: `${s.name} windows`,
Expand Down

0 comments on commit 1eed1b7

Please sign in to comment.