Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
tests: remove test-46-multi-arch from no-npm run
Browse files Browse the repository at this point in the history
  • Loading branch information
igorklopov committed May 10, 2019
1 parent 005117c commit b0da4ee
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ console.log('');
if (process.env.CI) {
if (target === 'node0' ||
target === 'node4' ||
target === 'node6' ||
target === 'node7' ||
target === 'node9') {
target === 'node9' ||
target === 'node11') {
console.log(target + ' is skipped in CI!');
console.log('');
process.exit();
Expand All @@ -36,6 +38,8 @@ if (flavor === 'only-npm') {
list.push(path.join(__dirname, '*/main.js'));
if (flavor === 'no-npm') {
list.push('!' + path.join(__dirname, 'test-42-fetch-all'));
list.push('!' + path.join(__dirname, 'test-46-multi-arch'));
list.push('!' + path.join(__dirname, 'test-46-multi-arch-2'));
list.push('!' + path.join(__dirname, 'test-79-npm'));
}
}
Expand Down

0 comments on commit b0da4ee

Please sign in to comment.