mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-08 19:44:57 -05:00
13 lines
272 B
Bash
Executable File
13 lines
272 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o pipefail
|
|
set +e
|
|
|
|
CURR_DIR=$(dirname "$0")
|
|
|
|
# Format diff-coverage.txt for PR comment
|
|
poetry run python "$CURR_DIR"/coverage_report_format.py \
|
|
global-coverage \
|
|
--global-coverage-json-file "$1" \
|
|
--global-coverage-output-file diff-coverage.txt
|