From c75113ca6d683cbcfc6c62febc314807362d0b75 Mon Sep 17 00:00:00 2001 From: "Michael F." Date: Wed, 31 Jan 2024 12:38:33 +0100 Subject: [PATCH] add new test functions to makefile --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c4f7005..74b63ea 100644 --- a/Makefile +++ b/Makefile @@ -18,9 +18,14 @@ test: test-account: sbt Test/compile "testOnly org.graphsense.account.*" + sbt Test/compile "testOnly org.graphsense.common.*" test-utxo: sbt Test/compile "testOnly org.graphsense.utxo.*" + sbt Test/compile "testOnly org.graphsense.common.*" + +test-common: + sbt Test/compile "testOnly org.graphsense.common.*" format: sbt scalafmt @@ -61,4 +66,4 @@ tag-version: git diff --exit-code && git diff --staged --exit-code && git tag -a $(RELEASE) -m 'Release $(RELEASE)' || (echo "Repo is dirty please commit first" && exit 1) -.PHONY: all test lint format build tag-version start-local-cassandra stop-local-cassandra run-local-transform build-docker test-account test-utxo \ No newline at end of file +.PHONY: all test lint format build tag-version start-local-cassandra stop-local-cassandra run-local-transform build-docker test-account test-utxo test-common \ No newline at end of file