-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscripts.py
More file actions
38 lines (24 loc) · 1.06 KB
/
scripts.py
File metadata and controls
38 lines (24 loc) · 1.06 KB
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
import sys
def format():
subprocess.run(["isort", "./redis_retrieval_optimizer", "./tests/", "--profile", "black"], check=True)
subprocess.run(["black", "./redis_retrieval_optimizer", "./tests/"], check=True)
def check_format():
subprocess.run(["black", "--check", "./redis_retrieval_optimizer"], check=True)
def sort_imports():
subprocess.run(["isort", "./redis_retrieval_optimizer", "./tests/", "--profile", "black"], check=True)
def check_sort_imports():
subprocess.run(
["isort", "./redis_retrieval_optimizer", "--check-only", "--profile", "black"], check=True
)
def check_lint():
subprocess.run(["pylint", "--rcfile=.pylintrc", "./redis_retrieval_optimizer"], check=True)
def check_mypy():
subprocess.run(["python", "-m", "mypy", "./redis_retrieval_optimizer"], check=True)
def test():
test_cmd = ["python", "-m", "pytest"]
# 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)