Skip to content

Commit be1f428

Browse files
committed
test: skip fs.watch intensive tests on Travis
We skip 3 tests that make intensive use of FS watcher on Travis because it has a limit of the number of watchers that can be used. Refs: travis-ci.com/nodejs/node/jobs/142234998 Refs: docs.travis-ci.com/user/environment-variables/#default-environment-variables
1 parent 8884a98 commit be1f428

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

test/async-hooks/test-fseventwrap.js

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ const fs = require('fs');
1010
if (!common.isMainThread)
1111
common.skip('Worker bootstrapping works differently -> different async IDs');
1212

13+
if (process.env.TRAVIS)
14+
common.skip('Skip fs.watch-intensive test because of Travis limitation.');
15+
1316
const hooks = initHooks();
1417

1518
hooks.enable();

test/parallel/test-fs-watch-close-when-destroyed.js

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ const tmpdir = require('../common/tmpdir');
88
const fs = require('fs');
99
const path = require('path');
1010

11+
if (process.env.TRAVIS)
12+
common.skip('Skip fs.watch-intensive test because of Travis limitation.');
13+
1114
tmpdir.refresh();
1215
const root = path.join(tmpdir.path, 'watched-directory');
1316
fs.mkdirSync(root);

test/sequential/test-fs-watch.js

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ const tmpdir = require('../common/tmpdir');
3131
if (!common.isMainThread)
3232
common.skip('process.chdir is not available in Workers');
3333

34+
if (process.env.TRAVIS)
35+
common.skip('Skip fs.watch-intensive test because of Travis limitation.');
36+
3437
const expectFilePath = common.isWindows ||
3538
common.isLinux ||
3639
common.isOSX ||

0 commit comments

Comments
 (0)