804a4bf179
Build & Test (NowChessSystems) TeamCity build finished
Reviewed-on: #41 Co-authored-by: Janis <janis.e.20@gmx.de> Co-committed-by: Janis <janis.e.20@gmx.de>
11 lines
230 B
Bash
Executable File
11 lines
230 B
Bash
Executable File
#! /usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
./gradlew test -Dquarkus.profile=test
|
|
|
|
if [ "$#" -eq 0 ]; then
|
|
PYTHONUTF8=1 python3 jacoco-reporter/test_gaps.py
|
|
else
|
|
PYTHONUTF8=1 python3 jacoco-reporter/test_gaps.py --module "$1"
|
|
fi
|