Skip to content

Commit 596a8c7

Browse files
committed
[CONFIG] Better test logging and running
1 parent 3b64bc0 commit 596a8c7

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ BRUTEFORCE ?= false
2020
BRUTEFORCE :=$(shell echo '${BRUTEFORCE}'| tr '[:lower:]' '[:upper:]'| tr -d '[:blank:]')
2121

2222
# Package Manager
23-
GRADLE=./gradlew
23+
# GRADLE=./gradlew
24+
GRADLE=gradle
2425

2526
# DOCKER
2627
BUILDKIT_PROGRESS=plain
@@ -51,8 +52,8 @@ dependencies:
5152
$(GRADLE) dependencies
5253
@echo "################################################################################"
5354

54-
test: env dependencies
55-
$(GRADLE) test
55+
test: env
56+
$(GRADLE) --console=verbose clean test
5657

5758
compose/build: env
5859
docker-compose --profile testing build

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ plugins {
1010
// Apply the application plugin to add support for building a CLI application in Java.
1111
id 'application'
1212
id 'jacoco'
13+
id 'com.adarshr.test-logger' version '3.2.0'
1314
}
1415

1516
java {

0 commit comments

Comments
 (0)