-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathnoxfile.py
97 lines (82 loc) · 2.53 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
"""Test with different environment configuration with nox.
Documentation:
https://nox.thea.codes/
"""
import nox
nox.options.error_on_missing_interpreters = False
COMMON_TEST_DEPENDENCIES = (
"jinja2",
"numpy==1.23.5",
"typing_extensions",
"beartype!=0.16.0",
"types-PyYAML",
"expecttest",
"hypothesis",
"packaging",
"parameterized",
"pytest-cov",
"pytest-randomly",
"pytest-subtests",
"pytest-xdist",
"pytest!=7.1.0",
"pyyaml",
)
ONNX = "onnx==1.14.1"
ONNX_RUNTIME = "onnxruntime==1.15.1"
PYTORCH = "torch==2.0.1"
ONNX_RUNTIME_NIGHTLY_DEPENDENCIES = (
"flatbuffers",
"coloredlogs",
"sympy",
"numpy",
"packaging",
"protobuf",
)
@nox.session(tags=["build"])
def build(session):
"""Build package."""
session.install("build", "wheel")
session.run("python", "-m", "build")
@nox.session(tags=["test"])
def test(session):
"""Test onnxscript and documentation."""
session.install(
*COMMON_TEST_DEPENDENCIES,
PYTORCH,
ONNX,
ONNX_RUNTIME,
)
session.install(".", "--no-deps")
session.run("pip", "list")
session.run("pytest", "onnxscript", *session.posargs)
session.run("pytest", "docs/test", *session.posargs)
@nox.session(tags=["test-torch-nightly"])
def test_torch_nightly(session):
"""Test with PyTorch nightly (preview) build."""
session.install(
*COMMON_TEST_DEPENDENCIES,
ONNX_RUNTIME,
)
session.install("-r", "requirements/ci/requirements-onnx-weekly.txt")
session.install("-r", "requirements/ci/requirements-pytorch-nightly.txt")
session.install(".", "--no-deps")
session.run("pip", "list")
session.run("pytest", "onnxscript", *session.posargs)
@nox.session(tags=["test-onnx-weekly"])
def test_onnx_weekly(session):
"""Test with ONNX weekly (preview) build."""
session.install(*COMMON_TEST_DEPENDENCIES, ONNX_RUNTIME, PYTORCH)
session.install("-r", "requirements/ci/requirements-onnx-weekly.txt")
session.install(".", "--no-deps")
session.run("pip", "list")
session.run("pytest", "onnxscript", *session.posargs)
@nox.session(tags=["test-ort-nightly"])
def test_ort_nightly(session):
"""Test with ONNX Runtime nightly builds."""
session.install(
*COMMON_TEST_DEPENDENCIES, PYTORCH, ONNX, *ONNX_RUNTIME_NIGHTLY_DEPENDENCIES
)
session.install("-r", "requirements/ci/requirements-ort-nightly.txt")
session.install(".", "--no-deps")
session.run("pip", "list")
session.run("pytest", "onnxscript", *session.posargs)