File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 27
27
name :
28
28
- py313
29
29
- py312-onnx-weekly
30
- - py39
30
+ - py310
31
31
include :
32
32
# Test the max and min supported versions of Python
33
33
- name : py313
36
36
- name : py312-onnx-weekly
37
37
python-version : " 3.12"
38
38
nox-tag : test-onnx-weekly
39
- - name : py39
40
- python-version : " 3.9 "
39
+ - name : py310
40
+ python-version : " 3.10 "
41
41
nox-tag : test
42
42
runs-on : ${{ matrix.os }}
43
43
steps :
52
52
run : git lfs pull
53
53
- name : Run tests
54
54
run : nox -t ${{ matrix.nox-tag }} --forcecolor -- --cov=onnx_ir --cov-report=xml --cov-append --cov-branch -n=auto --junitxml junit.xml
55
- env :
56
- CATCH_ORT_SEGFAULT : " ${{ matrix.os == 'ubuntu-latest' && '1' || '0' }}"
57
- CREATE_REPRODUCTION_REPORT : " ${{ matrix.os == 'ubuntu-latest' && '1' || '0' }}"
58
55
- name : Upload coverage to Codecov
59
56
if : always()
60
57
uses : codecov/codecov-action@v5
77
74
- name : Setup Python
78
75
uses : actions/setup-python@v5
79
76
with :
80
- python-version : " 3.10 "
77
+ python-version : " 3.12 "
81
78
cache : pip
82
79
cache-dependency-path : " **/requirements-dev.txt"
83
80
- name : Install dependencies
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ def test(session):
59
59
@nox .session (tags = ["test-onnx-weekly" ])
60
60
def test_onnx_weekly (session ):
61
61
"""Test with ONNX weekly (preview) build."""
62
- session .install (* COMMON_TEST_DEPENDENCIES )
62
+ session .install (* COMMON_TEST_DEPENDENCIES , PYTORCH )
63
63
session .install ("-r" , "requirements/ci/requirements-onnx-weekly.txt" )
64
64
session .install ("." , "--no-deps" )
65
65
session .run ("pip" , "list" )
You can’t perform that action at this time.
0 commit comments