We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f3bf7e commit 783f62bCopy full SHA for 783f62b
scripts/ci.sh
@@ -1,9 +1,17 @@
1
#!/bin/bash
2
set -ex
3
4
+# Set environment variable to have the AVA config skip wathch mode tests.
5
TEST_AVA_SKIP_WATCH_MODE=1 npx c8 --report=none npx test-ava
6
+
7
# Reduce concurrency and be generous with timeouts to give watch mode tests a
8
# better chance of succeeding in a CI environment.
9
npx c8 --report=none --no-clean npx test-ava --serial --timeout 30s test/watch-mode
-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
17
npx c8 report
0 commit comments