forked from davesteele/comitup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devtest.py
executable file
·99 lines (74 loc) · 2.06 KB
/
devtest.py
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
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/python3
#
# Copyright (c) 2022 David Steele <dsteele@gmail.com>
#
# SPDX-License-Identifier: GPL-2.0-or-later
# License-Filename: LICENSE
#
"""
devtest.py
This creates a virtual environment, and runs a number of test environments
against the comitup code.
The venv is persistent, and the tests run in parallel, so this is much quicker
than tox or nox.
"""
import subprocess
import sys
import venv
from concurrent.futures import ThreadPoolExecutor
from pathlib import Path
from typing import List
envpath: Path = Path(__file__).resolve().parent / ".devenv"
pythonpath: str = str(envpath / "bin" / "python")
pkgs: List[str] = [
"pytest",
"mypy",
"flake8",
"black",
"isort",
"cachetools",
"flask",
"types-mock",
"types-tabulate",
"types-pkg_resources",
"types-Flask",
"types-cachetools",
]
targets: str = "comitup web cli test devtest.py setup.py"
def mkcmd(cmd: str) -> List[str]:
return [str(pythonpath), "-m"] + cmd.split()
def run(cmd: str) -> subprocess.CompletedProcess:
cp = subprocess.run(
mkcmd(cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT
)
return cp
print("# Tests starting")
if not envpath.exists():
print("# Creating virtual environment")
virtenv = venv.EnvBuilder(
system_site_packages=True, symlinks=True, with_pip=True
)
virtenv.create(str(envpath))
print("# Installing packages")
run("pip install " + " ".join(pkgs))
tests: List[str] = [
"black --check {}".format(targets),
"isort --check {}".format(targets),
"mypy {}".format(targets),
"flake8 {}".format(targets),
"pytest",
]
executor = ThreadPoolExecutor(max_workers=5)
fail = False
for result in executor.map(lambda x: run(x), tests):
print("#####################################")
print("# Running {}".format(" ".join(result.args)))
print(result.stdout.decode())
print("#####################################")
print()
if result.returncode:
fail = True
if fail:
print("# ERROR(S) ENCOUNTERED")
sys.exit(1)
print("# Tests complete")