-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.py
38 lines (22 loc) · 983 Bytes
/
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
import subprocess
def format():
subprocess.run(["isort", "./langgraph", "./tests/", "--profile", "black"], check=True)
subprocess.run(["black", "./langgraph", "./tests/"], check=True)
def check_format():
subprocess.run(["black", "--check", "./langgraph"], check=True)
def sort_imports():
subprocess.run(["isort", "./langgraph", "./tests/", "--profile", "black"], check=True)
def check_sort_imports():
subprocess.run(
["isort", "./langgraph", "--check-only", "--profile", "black"], check=True
)
def check_lint():
subprocess.run(["pylint", "--rcfile=.pylintrc", "./langgraph"], check=True)
def check_mypy():
subprocess.run(["python", "-m", "mypy", "./langgraph"], check=True)
def test():
subprocess.run(["python", "-m", "pytest", "-n", "auto", "--log-level=CRITICAL"], check=True)
def test_verbose():
subprocess.run(
["python", "-m", "pytest", "-n", "auto", "-vv", "-s", "--log-level=CRITICAL"], check=True
)