-
Notifications
You must be signed in to change notification settings - Fork 37
/
scripts.py
42 lines (29 loc) · 1.43 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
import subprocess
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 mypy():
subprocess.run(["python", "-m", "mypy", "./redisvl"], check=True)
def test():
subprocess.run(["python", "-m", "pytest", "--log-level=CRITICAL"], check=True)
def test_verbose():
subprocess.run(["python", "-m", "pytest", "-vv", "-s", "--log-level=CRITICAL"], check=True)
def test_cov():
subprocess.run(["python", "-m", "pytest", "-vv", "--cov=./redisvl", "--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")
def test_notebooks():
subprocess.run(["cd", "docs/", "&&", "poetry run treon", "-v"], 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)