Skip to content

Commit 4dde876

Browse files
committed
build: don't test addons-napi twice
The addons-napi testsuite is already included in $(CI_NATIVE_SUITES), so we don't need to manually specify it in the test-ci target as well. PR-URL: #12201 Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent 809ca2f commit 4dde876

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ test-ci: | clear-stalled build-addons build-addons-napi
346346
out/Release/cctest --gtest_output=tap:cctest.tap
347347
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
348348
--mode=release --flaky-tests=$(FLAKY_TESTS) \
349-
$(TEST_CI_ARGS) $(CI_NATIVE_SUITES) addons-napi $(CI_JS_SUITES)
349+
$(TEST_CI_ARGS) $(CI_NATIVE_SUITES) $(CI_JS_SUITES)
350350
# Clean up any leftover processes, error if found.
351351
ps awwx | grep Release/node | grep -v grep | cat
352352
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \

0 commit comments

Comments
 (0)