-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathscripts.py
83 lines (60 loc) · 1.8 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import subprocess
import sys
def format():
subprocess.run(["isort", "./redisvl", "./tests/", "--profile", "black"], check=True)
subprocess.run(["black", "./redisvl", "./tests/"], check=True)
def check_format():
subprocess.run(["black", "--check", "./redisvl"], check=True)
def sort_imports():
subprocess.run(["isort", "./redisvl", "./tests/", "--profile", "black"], check=True)
def check_sort_imports():
subprocess.run(
["isort", "./redisvl", "--check-only", "--profile", "black"], check=True
)
def check_lint():
subprocess.run(["pylint", "--rcfile=.pylintrc", "./redisvl"], check=True)
def check_mypy():
subprocess.run(["python", "-m", "mypy", "./redisvl"], check=True)
def test():
test_cmd = ["python", "-m", "pytest", "-n", "auto", "--log-level=CRITICAL"]
# Get any extra arguments passed to the script
extra_args = sys.argv[1:]
if extra_args:
test_cmd.extend(extra_args)
subprocess.run(test_cmd, check=True)
def test_verbose():
test_cmd = [
"python",
"-m",
"pytest",
"-n",
"auto",
"-vv",
"-s",
"--log-level=CRITICAL",
]
# Get any extra arguments passed to the script
extra_args = sys.argv[1:]
if extra_args:
test_cmd.extend(extra_args)
subprocess.run(test_cmd, check=True)
def test_notebooks():
test_cmd = [
"python",
"-m",
"pytest",
"--nbval-lax",
"./docs/user_guide",
"-vvv",
]
extra_args = sys.argv[1:]
if extra_args:
test_cmd.extend(extra_args)
subprocess.run(
test_cmd,
check=True,
)
def build_docs():
subprocess.run("cd docs/ && make html", shell=True)
def serve_docs():
subprocess.run("cd docs/_build/html && python -m http.server", shell=True)