-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscripts.py
65 lines (43 loc) · 1.44 KB
/
scripts.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
import subprocess
import sys
def study():
# Get all arguments after the study command and pass them through
args = ["python", "-m", "optimize.main"] + sys.argv[1:]
subprocess.run(args, check=True)
def start_app():
# start app
subprocess.run(
["uvicorn", "label_app.main:app", "--host", "0.0.0.0", "--port", "8000"],
check=True,
)
def format():
subprocess.run(["isort", ".", "--profile", "black"], check=True)
subprocess.run(["black", "."], check=True)
def check_format():
subprocess.run(["black", "--check", "."], check=True)
def check_mypy():
subprocess.run(["python", "-m", "mypy", "."], check=True)
def check_lint():
subprocess.run(["pylint", "--rcfile=.pylintrc", "."], check=True)
def sort_imports():
subprocess.run(["isort", ".", "./tests/", "--profile", "black"], check=True)
def check_sort_imports():
subprocess.run(["isort", ".", "--check-only", "--profile", "black"], check=True)
def test():
subprocess.run(["python", "-m", "pytest", ".", "--log-level=CRITICAL"], check=True)
def test_cov():
subprocess.run(
[
"python",
"-m",
"pytest",
"-vv",
"--cov=.",
"--cov-report=xml",
"--log-level=CRITICAL",
],
check=True,
)
def cov():
subprocess.run(["coverage", "html"], check=True)
print("If data was present, coverage report is in ./htmlcov/index.html")