From f946a56f305c521acaf29515b2e14d62ae44eff9 Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Mon, 11 Apr 2022 11:07:24 +0200 Subject: [PATCH] Makefile: drop $(NODE_MODULES_TEST) dependency from prepare-check The existing dependency system will already do the needed build steps (including fetching the nodejs modules) to prepare the image for testing, so there is no need for the tests-related target to do that. Especially when using an own test image the assumption is that the cockpit plugin is already installed, and thus there is no need to fetch the nodejs modules. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1f06bf8..1e71e6c 100644 --- a/Makefile +++ b/Makefile @@ -158,7 +158,7 @@ print-vm: # convenience target to setup all the bits needed for the integration tests # without actually running them -prepare-check: $(NODE_MODULES_TEST) $(VM_IMAGE) test/common +prepare-check: $(VM_IMAGE) test/common # run the browser integration tests; skip check for SELinux denials # this will run all tests/check-* and format them as TAP