test: remove duplicate error reporter from ci
PR-URL: https://github.com/nodejs/node/pull/56739 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
efe698ee93
commit
0741d69f6d
2
.github/workflows/build-tarball.yml
vendored
2
.github/workflows/build-tarball.yml
vendored
@ -105,4 +105,4 @@ jobs:
|
||||
- name: Test
|
||||
run: |
|
||||
cd $TAR_DIR
|
||||
make run-ci -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9"
|
||||
make run-ci -j4 V=1 TEST_CI_ARGS="-p dots --measure-flakiness 9"
|
||||
|
@ -68,7 +68,7 @@ jobs:
|
||||
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
|
||||
# The cause is most likely coverage's use of the inspector.
|
||||
- name: Test
|
||||
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9" || exit 0
|
||||
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --measure-flakiness 9" || exit 0
|
||||
- name: Report JS
|
||||
run: npx c8 report --check-coverage
|
||||
env:
|
||||
|
2
.github/workflows/coverage-linux.yml
vendored
2
.github/workflows/coverage-linux.yml
vendored
@ -68,7 +68,7 @@ jobs:
|
||||
# TODO(bcoe): fix the couple tests that fail with the inspector enabled.
|
||||
# The cause is most likely coverage's use of the inspector.
|
||||
- name: Test
|
||||
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --node-args='--test-reporter=./test/common/test-error-reporter.js' --measure-flakiness 9" || exit 0
|
||||
run: NODE_V8_COVERAGE=coverage/tmp make test-cov -j4 V=1 TEST_CI_ARGS="-p dots --measure-flakiness 9" || exit 0
|
||||
- name: Report JS
|
||||
run: npx c8 report --check-coverage
|
||||
env:
|
||||
|
2
.github/workflows/doc.yml
vendored
2
.github/workflows/doc.yml
vendored
@ -40,4 +40,4 @@ jobs:
|
||||
name: docs
|
||||
path: out/doc
|
||||
- name: Test
|
||||
run: NODE=$(command -v node) make test-doc-ci TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
|
||||
run: NODE=$(command -v node) make test-doc-ci TEST_CI_ARGS="-p actions --measure-flakiness 9"
|
||||
|
2
.github/workflows/test-asan.yml
vendored
2
.github/workflows/test-asan.yml
vendored
@ -63,4 +63,4 @@ jobs:
|
||||
- name: Build
|
||||
run: make build-ci -j4 V=1
|
||||
- name: Test
|
||||
run: make run-ci -j4 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' -t 300 --measure-flakiness 9"
|
||||
run: make run-ci -j4 V=1 TEST_CI_ARGS="-p actions -t 300 --measure-flakiness 9"
|
||||
|
2
.github/workflows/test-linux.yml
vendored
2
.github/workflows/test-linux.yml
vendored
@ -54,7 +54,7 @@ jobs:
|
||||
- name: Build
|
||||
run: make -C node build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn"
|
||||
- name: Test
|
||||
run: make -C node run-ci -j4 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
|
||||
run: make -C node run-ci -j4 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
|
||||
- name: Re-run test in a folder whose name contains unusual chars
|
||||
run: |
|
||||
mv node "$DIR"
|
||||
|
2
.github/workflows/test-macos.yml
vendored
2
.github/workflows/test-macos.yml
vendored
@ -89,7 +89,7 @@ jobs:
|
||||
- name: Free Space After Build
|
||||
run: df -h
|
||||
- name: Test
|
||||
run: make -C node run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' --measure-flakiness 9"
|
||||
run: make -C node run-ci -j$(getconf _NPROCESSORS_ONLN) V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9"
|
||||
- name: Re-run test in a folder whose name contains unusual chars
|
||||
run: |
|
||||
mv node "$DIR"
|
||||
|
2
.github/workflows/test-ubsan.yml
vendored
2
.github/workflows/test-ubsan.yml
vendored
@ -64,4 +64,4 @@ jobs:
|
||||
- name: Build
|
||||
run: make build-ci -j2 V=1
|
||||
- name: Test
|
||||
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions --node-args='--test-reporter=./test/common/test-error-reporter.js' --node-args='--test-reporter-destination=stdout' -t 300 --measure-flakiness 9"
|
||||
run: make run-ci -j2 V=1 TEST_CI_ARGS="-p actions -t 300 --measure-flakiness 9"
|
||||
|
Loading…
x
Reference in New Issue
Block a user