-
Notifications
You must be signed in to change notification settings - Fork 792
/
noxfile.py
99 lines (84 loc) · 3.16 KB
/
noxfile.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import os
import nox
os.environ.update({"PDM_IGNORE_SAVED_PYTHON": "1", "TOKENIZERS_PARALLELISM": "false"})
TEST_ARGS = [
"pytest",
"--cov=bentoml",
"--cov-report=term-missing",
"--cov-config=pyproject.toml",
"-vv",
]
PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
FRAMEWORK_DEPENDENCIES = {
"catboost": ["catboost", "numpy<2"],
"diffusers": ["diffusers", "transformers", "tokenizer"],
"easyocr": ["easyocr"],
"fastai": ["fastai"],
"flax": [
"tensorflow",
"flax; platform_system!='Windows'",
"jax[cpu]; platform_system!='Windows'",
"jaxlib; platform_system!='Windows'",
"chex; platform_system!='Windows'",
],
"keras": ["keras>=3.4"],
"lightgbm": ["lightgbm"],
"onnx": ["onnx", "onnxruntime", "skl2onnx"],
"picklable_model": [],
"pytorch": [],
"pytorch_lightning": ["lightning"],
"sklearn": ["scikit-learn"],
"tensorflow": ["tensorflow"],
"torchscript": [],
"xgboost": ["xgboost"],
"detectron": ["detectron2"],
"transformers": ["transformers", "tokenizer"],
}
@nox.session(python=PYTHON_VERSIONS, name="unit")
def run_unittest(session: nox.Session):
session.run("pdm", "sync", "-G", "grpc,io,testing", external=True)
session.run(*TEST_ARGS, "-n", "auto", "tests/unit")
@nox.session(name="framework-integration")
@nox.parametrize("framework", list(FRAMEWORK_DEPENDENCIES))
def run_framework_integration_test(session: nox.Session, framework: str):
session.run("pdm", "sync", "-G", "testing", external=True)
session.install(
"torch",
"torchaudio",
"torchvision",
"-i",
"https://download.pytorch.org/whl/cpu",
)
deps = FRAMEWORK_DEPENDENCIES[framework]
if deps:
session.install(*deps)
session.run("pdm", "list", "--tree")
session.run(
*TEST_ARGS,
"tests/integration/frameworks/test_frameworks.py",
"--framework",
framework,
)
@nox.session(name="e2e-testing", python=PYTHON_VERSIONS)
@nox.parametrize("suite", ["bento_server_http", "bento_server_grpc", "bento_new_sdk"])
def run_e2e_test(session: nox.Session, suite: str):
session.run("pdm", "sync", "-G", "io,testing", external=True)
test_folder = os.path.join("tests/e2e", suite)
requirements = os.path.join(test_folder, "requirements.txt")
if os.path.exists(requirements):
session.install("-r", requirements)
session.run(*TEST_ARGS, test_folder)
@nox.session(name="e2e-monitoring", python=PYTHON_VERSIONS)
def run_e2e_monitoring_test(session: nox.Session):
session.run("pdm", "sync", "-G", "io,testing,monitor-otlp", external=True)
test_folder = "tests/monitoring/task_classification"
os.makedirs(os.path.join(test_folder, "monitoring"), exist_ok=True)
session.run(*TEST_ARGS, test_folder)
@nox.session(name="coverage")
def coverage_report(session: nox.Session):
session.run("pdm", "sync", "-G", "testing", external=True)
session.run("coverage", "combine")
session.run("coverage", "xml")
session.run("coverage", "html", "--skip-covered", "--skip-empty")
session.run("python", "tools/generate_coverage.py")
session.run("python", "tools/write_report.py")