Skip to content

Commit

Permalink
add new test functions to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Jan 31, 2024
1 parent 4b0a33a commit c75113c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
.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

0 comments on commit c75113c

Please sign in to comment.