forked from xonsh/xonsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-tests.xsh
executable file
·89 lines (66 loc) · 2.37 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/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_NO_AMALGAMATE = 1
# $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,
no_amalgam: xcli.Arg('--no-amalgam', '-n', 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
no_amalgam
Disable amalgamation check
Examples
--------
`xonsh run-tests.xsh -- --junitxml=junit/test-results.%%d.xml`
"""
if (not no_amalgam) and not $(xonsh -c "import xonsh.main; print(xonsh.main.__file__, end='')").endswith("__amalgam__.py"):
echo "Tests need to run from the amalgamated xonsh! install with `pip install .` (without `-e`)"
exit(1)
if report_cov:
$XONSH_NO_AMALGAMATE = True
![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 qa():
"""QA checks"""
$XONSH_NO_AMALGAMATE = True
$XONSH_TRACE_SUBPROC_FUNC = colored_tracer
$XONSH_TRACE_SUBPROC = True
black --check xonsh xontrib tests xompletions
isort --check xonsh xontrib tests xompletions
python -m flake8
mypy xonsh
mypy xontrib --namespace-packages --explicit-package-bases
mypy xompletions --namespace-packages --explicit-package-bases
pytest -m news
if __name__ == '__main__':
parser = xcli.make_parser("test commands")
parser.add_command(test)
parser.add_command(qa)
try:
xcli.dispatch(parser)
except subprocess.CalledProcessError as ex:
parser.exit(1, f"Failed with {ex}")