File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,21 @@ jobs:
105
105
- name : Test with PyTest
106
106
run : uv run pytest -v -rsx -n 2 -m "torch_export"
107
107
108
+ test_torch_script :
109
+ runs-on : ubuntu-latest
110
+ steps :
111
+ - uses : actions/checkout@v4
112
+ - name : Set up Python
113
+ uses : astral-sh/setup-uv@v5
114
+ with :
115
+ python-version : " 3.10"
116
+ - name : Install dependencies
117
+ run : uv pip install -r requirements/required.txt -r requirements/test.txt
118
+ - name : Show installed packages
119
+ run : uv pip list
120
+ - name : Test with PyTest
121
+ run : uv run pytest -v -rsx -n 2 -m "torch_script"
122
+
108
123
minimum :
109
124
runs-on : ubuntu-latest
110
125
steps :
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ markers = [
66
66
" logits_match" ,
67
67
" compile" ,
68
68
" torch_export" ,
69
+ " torch_script" ,
69
70
]
70
71
71
72
[tool .coverage .run ]
You can’t perform that action at this time.
0 commit comments