mirror of
https://github.com/anchore/grype
synced 2024-11-14 00:07:08 +00:00
5754360376
- Remove old apple signing flow in favor of [quill](https://github.com/anchore/quill) - Update changelog generation to be in sync with syft's flow - Remove old goreleaser docker workflow in favor of single file - Remove individual bootstrap options in favor of single bootstrap action - Update release and validation workflows to use trigger based approach seen in syft - Update golangci.yaml to be equivalent to syft patterns - Remove unused Dockerfile.dev - Remove docker-compose development cycle - Add organized test-fixture Makefile targets Signed-off-by: Christopher Phillips <christopher.phillips@anchore.com>
36 lines
861 B
Python
Executable file
36 lines
861 B
Python
Executable file
#!/usr/bin/env python3
|
|
import subprocess
|
|
import sys
|
|
import shlex
|
|
|
|
|
|
class bcolors:
|
|
HEADER = '\033[95m'
|
|
OKBLUE = '\033[94m'
|
|
OKCYAN = '\033[96m'
|
|
OKGREEN = '\033[92m'
|
|
WARNING = '\033[93m'
|
|
FAIL = '\033[91m'
|
|
ENDC = '\033[0m'
|
|
BOLD = '\033[1m'
|
|
UNDERLINE = '\033[4m'
|
|
|
|
|
|
if len(sys.argv) < 3:
|
|
print("Usage: coverage.py [threshold] [go-coverage-report]")
|
|
sys.exit(1)
|
|
|
|
|
|
threshold = float(sys.argv[1])
|
|
report = sys.argv[2]
|
|
|
|
|
|
args = shlex.split(f"go tool cover -func {report}")
|
|
p = subprocess.run(args, capture_output=True, text=True)
|
|
|
|
percent_coverage = float(p.stdout.splitlines()[-1].split()[-1].replace("%", ""))
|
|
print(f"{bcolors.BOLD}Coverage: {percent_coverage}%{bcolors.ENDC}")
|
|
|
|
if percent_coverage < threshold:
|
|
print(f"{bcolors.BOLD}{bcolors.FAIL}Coverage below threshold of {threshold}%{bcolors.ENDC}")
|
|
sys.exit(1)
|