1b9eb471de
Build & Test (NowChessSystems) TeamCity build finished
Reviewed-on: #16 Co-authored-by: Janis <janis.e.20@gmx.de> Co-committed-by: Janis <janis.e.20@gmx.de>
11 lines
207 B
Bash
11 lines
207 B
Bash
#! /usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
./gradlew 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
|