-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathnoxfile.py
127 lines (109 loc) · 3.52 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
"""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",
"types-PyYAML",
"expecttest",
"hypothesis",
"packaging",
"parameterized",
"pytest-cov",
"pytest-randomly",
"pytest-subtests",
"pytest-xdist",
"pytest!=7.1.0",
"pyyaml",
)
ONNX = "onnx==1.13.1"
ONNX_RUNTIME = "onnxruntime==1.14.1"
PYTORCH = "torch==2.0.0"
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-function-experiment"])
def test_onnx_func_expe(session):
"""Test with onnx function experiment builds."""
# TODO(justinchuby): Remove when test-ort-nightly contains this change.
session.install(
*COMMON_TEST_DEPENDENCIES,
PYTORCH,
)
# Install ONNX and ORT with experimental ONNX function support
session.install(
"-f",
"https://onnxruntimepackages.z14.web.core.windows.net/onnxruntime-function-experiment.html",
"--pre",
"ort-function-experiment-nightly",
)
session.install("-r", "requirements/ci/requirements-onnx-weekly.txt")
session.install(".", "--no-deps")
session.run("pip", "list")
# Ignore ops_correctness_test because this version of ORT does not contain the
# latest fixes and may fail some tests in the torch op tests.
session.run(
"pytest",
"onnxscript",
"--ignore=onnxscript/tests/function_libs/torch_aten/ops_correctness_test.py",
*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,
ONNX_RUNTIME,
)
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)