Files
NowChessSystems/coverage
T
Janis 80518719d5
Build & Test (NowChessSystems) TeamCity build finished
feat: NCS-21 Write Scripts to automate certain tasks (#15)
Co-authored-by: shahdlala66 <shahd.lala66@gmail.com>
Reviewed-on: #15
Co-authored-by: Janis <janis.e.20@gmx.de>
Co-committed-by: Janis <janis.e.20@gmx.de>
2026-04-02 21:11:21 +02:00

11 lines
249 B
Bash

#! /usr/bin/env bash
set -euo pipefail
./gradlew test
if [ "$#" -eq 0 ]; then
python3 jacoco-reporter/scoverage_coverage_gaps.py
else
python3 jacoco-reporter/scoverage_coverage_gaps.py "modules/$1/build/reports/scoverageTest/scoverage.xml"
fi