-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI,TST: Fix codecov upload to work on all CIs
- Loading branch information
Showing
10 changed files
with
110 additions
and
5 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
[run] | ||
omit=*/tests/* | ||
parallel=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,8 @@ MANIFEST | |
*~ | ||
.pytest_cache | ||
.coverage | ||
.coverage_dir | ||
coverage.xml | ||
|
||
# Rever | ||
rever/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
""" | ||
Helper script to combine coverage (as codecov seems to have problems...). | ||
Written in python to be cross-platform | ||
""" | ||
|
||
import argparse | ||
from os import chdir, listdir, environ | ||
from pathlib import Path | ||
import platform | ||
from pprint import pprint | ||
import shlex | ||
from subprocess import run, PIPE | ||
import sys | ||
|
||
THIS_FILE = Path(__file__) | ||
GIT_MAIN_DIR = THIS_FILE.parent.parent.resolve() | ||
COVERAGE_DIR = GIT_MAIN_DIR.joinpath('.coverage_dir') | ||
PYVERSION = '{}.{}'.format(sys.version_info[0], sys.version_info[1]) | ||
|
||
|
||
def msg(*args): | ||
print('ERR:', *args, file=sys.stderr) | ||
|
||
|
||
def pmsg(*args): | ||
pprint(*args, stream=sys.stderr) | ||
|
||
|
||
def run_with_python(args, **kwargs): | ||
if platform.system() == 'Windows': | ||
exe = ['py', '-' + PYVERSION, '-m'] | ||
else: | ||
exe = [] | ||
cmd = exe + args | ||
msg("Running:", *cmd) | ||
res = run(cmd, check=True, stdout=PIPE, stderr=PIPE, **kwargs) | ||
msg("STDOUT:") | ||
sys.stdout.buffer.write(res.stdout) | ||
msg("STDERR:") | ||
sys.stderr.buffer.write(res.stdout) | ||
return res | ||
|
||
|
||
def send_coverage(*, workdir, coverage_files, codecov_token): | ||
chdir(workdir) | ||
run_with_python(['coverage', 'combine'] + coverage_files) | ||
msg(f"Combined coverage, listing {GIT_MAIN_DIR}") | ||
pmsg(sorted(listdir(GIT_MAIN_DIR))) | ||
run_with_python(['coverage', 'xml', '--ignore-errors']) | ||
msg(f"Created coverage xml, listing {GIT_MAIN_DIR}") | ||
pmsg(sorted(listdir(GIT_MAIN_DIR))) | ||
codecov_args = ["--required"] | ||
if codecov_token is not None: | ||
codecov_args.extend(['-t', codecov_token]) | ||
codecov_args.extend(['--file', 'coverage.xml']) | ||
run_with_python(['codecov'] + codecov_args) | ||
|
||
|
||
def main(): | ||
parser = argparse.ArgumentParser() | ||
parser.add_argument("--codecov-token", default=None) | ||
args = parser.parse_args() | ||
msg(f"Working in {GIT_MAIN_DIR}, listing coverage dir {COVERAGE_DIR}") | ||
pmsg(sorted(listdir(COVERAGE_DIR))) | ||
coverage_files = [str(f) for f in COVERAGE_DIR.glob('coverage-*')] | ||
if coverage_files: | ||
send_coverage( | ||
workdir=GIT_MAIN_DIR, | ||
coverage_files=coverage_files, | ||
codecov_token=args.codecov_token, | ||
) | ||
else: | ||
msg("No coverage files found") | ||
if environ.get("H5PY_ENFORCE_COVERAGE") is not None: | ||
raise RuntimeError( | ||
"Coverage required, no coverage found, failing..." | ||
) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters