forked from xonsh/xonsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-tests.xsh
executable file
·68 lines (50 loc) · 1.64 KB
/
run-tests.xsh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env xonsh
import sys
import subprocess
from typing import List
import xonsh.cli_utils as xcli
from xonsh.tools import print_color
import itertools
$RAISE_SUBPROC_ERROR = True
# $XONSH_TRACE_SUBPROC = True
def colored_tracer(cmds, **_):
cmd = " ".join(itertools.chain.from_iterable(cmds))
print_color(f"{{GREEN}}$ {{BLUE}}{cmd}{{RESET}}", file=sys.stderr)
def _replace_args(args: List[str], num: int) -> List[str]:
return [
(arg % num) if "%d" in arg else arg
for arg in args
]
def test(
report_cov: xcli.Arg('--report-coverage', '-c', action="store_true") = False,
pytest_args: xcli.Arg(nargs='*')=(),
):
"""Run pytest.
Parameters
----------
report_cov
Report coverage at the end of the test
pytest_args
arbitrary arguments that gets passed to pytest's invocation.
Use %%d to parameterize and prevent overwrite
Examples
--------
`xonsh run-tests.xsh -- --junitxml=junit/test-results.%%d.xml`
"""
if report_cov:
![pytest @(_replace_args(pytest_args, 0)) --cov --cov-report=xml --cov-report=term]
else:
# during CI run, some tests take longer to complete on windows
![pytest @(_replace_args(pytest_args, 0)) --durations=5]
def validate_news_items(
pytest_args: xcli.Arg(nargs='*') = (),
):
![pytest -m news @(pytest_args)]
if __name__ == '__main__':
parser = xcli.make_parser("test commands")
parser.add_command(test)
parser.add_command(validate_news_items)
try:
xcli.dispatch(parser)
except subprocess.CalledProcessError as ex:
parser.exit(1, f"Failed with {ex}")