From 1adf56a0e2a5a8e3a6e16c37863de73caeef8c2c Mon Sep 17 00:00:00 2001 From: Tobin Feldman-Fitzthum Date: Tue, 10 Dec 2024 14:16:53 -0600 Subject: [PATCH] tests: add integration test to Makefile Let the make check target (which maybe should be renamed?) also run the integration tests. Signed-off-by: Tobin Feldman-Fitzthum --- kbs/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kbs/Makefile b/kbs/Makefile index b6f4d8804..a8a934b5a 100644 --- a/kbs/Makefile +++ b/kbs/Makefile @@ -81,7 +81,7 @@ uninstall: rm -rf $(INSTALL_DESTDIR)/kbs $(INSTALL_DESTDIR)/kbs-client $(INSTALL_DESTDIR)/issuer-kbs $(INSTALL_DESTDIR)/resource-kbs check: - cargo test -p kbs -p kbs-client + cargo test -p kbs -p kbs-client -p integration-tests lint: cargo clippy -p kbs -p kbs-client -- -D warnings