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:
105105 - name : Test with PyTest
106106 run : uv run pytest -v -rsx -n 2 -m "torch_export"
107107
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+
108123 minimum :
109124 runs-on : ubuntu-latest
110125 steps :
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ markers = [
6666 " logits_match" ,
6767 " compile" ,
6868 " torch_export" ,
69+ " torch_script" ,
6970]
7071
7172[tool .coverage .run ]
You can’t perform that action at this time.
0 commit comments