Skip to content

Commit 783f62b

Browse files
authoredDec 30, 2023
Only test reporters on Linux (CI)
These tests are more likely to be flaky on Mac and Windows.
1 parent 9f3bf7e commit 783f62b

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

‎scripts/ci.sh

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
#!/bin/bash
22
set -ex
33

4+
# Set environment variable to have the AVA config skip wathch mode tests.
45
TEST_AVA_SKIP_WATCH_MODE=1 npx c8 --report=none npx test-ava
6+
57
# Reduce concurrency and be generous with timeouts to give watch mode tests a
68
# better chance of succeeding in a CI environment.
79
npx c8 --report=none --no-clean npx test-ava --serial --timeout 30s test/watch-mode
8-
npx c8 --report=none --no-clean npx tap
10+
11+
# Only run reporter tests on Linux where they're least likely to flake out.
12+
case "$(uname -s)" in
13+
Linux*) npx c8 --report=none --no-clean npx tap;;
14+
*) npx c8 --report=none --no-clean npx tap --exclude="test-tap/reporters/{default,tap}.js"
15+
esac
16+
917
npx c8 report

0 commit comments

Comments
 (0)
Please sign in to comment.