xonsh/run-tests.xsh
Noorhteen Raja NJ 4b0918f9e3
fix: failing ci checks with black and mypy (#4517)
pip21.3 has changed the behaviour of build - https://pip.pypa.io/en/stable/news/#v21-3 to use in-tree-build by default. this creates amalgamated files.

this will install as editable dependency during qa checks

for some reason mypy exclude for __amalgam__.py is not working
2021-10-14 17:01:44 -04:00

87 lines
2.2 KiB
Text
Executable file

#!/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
python -m flake8
# todo: add xontrib folder here
mypy xonsh
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}")