Makefile: allow setup of integration tests w/o running them
Add a convenience target in Makefile to perform all the setup targets for integration tests without actually running them.
This commit is contained in:
parent
3dc7c804a0
commit
80b8949192
2 changed files with 9 additions and 1 deletions
6
Makefile
6
Makefile
|
|
@ -138,9 +138,13 @@ $(VM_IMAGE): $(TARFILE) $(NODE_CACHE) bots
|
|||
vm: $(VM_IMAGE)
|
||||
echo $(VM_IMAGE)
|
||||
|
||||
# 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
|
||||
|
||||
# run the browser integration tests; skip check for SELinux denials
|
||||
# this will run all tests/check-* and format them as TAP
|
||||
check: $(NODE_MODULES_TEST) $(VM_IMAGE) test/common
|
||||
check: prepare-check
|
||||
TEST_AUDIT_NO_SELINUX=1 test/common/run-tests
|
||||
|
||||
# checkout Cockpit's bots for standard test VM images and API to launch them
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue