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