Skip to content

Commit d2b1c92

Browse files
committed
fix ci
1 parent d787152 commit d2b1c92

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,14 @@ jobs:
5353
run: python -m pip freeze
5454

5555
- name: tiny-llm torch.export.export
56-
run: python _unittests/ut_torch_models/test_llms.py
56+
run: |
57+
export PYTHONPATH=.
58+
python _unittests/ut_torch_models/test_llms.py
5759
5860
- name: tiny-llm onnx
59-
run: python _unittests/ut_torch_models/test_llms_onnx.py
61+
run: |
62+
export PYTHONPATH=.
63+
python _unittests/ut_torch_models/test_llms_onnx.py
6064
6165
- name: run tests
6266
run: |

.github/workflows/documentation.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,14 @@ jobs:
5454
run: python -m pip freeze
5555

5656
- name: tiny-llm torch.export.export
57-
run: python _unittests/ut_torch_models/test_llms.py
57+
run: |
58+
export PYTHONPATH=.
59+
python _unittests/ut_torch_models/test_llms.py
5860
5961
- name: tiny-llm onnx
60-
run: python _unittests/ut_torch_models/test_llms_onnx.py
62+
run: |
63+
export PYTHONPATH=.
64+
python _unittests/ut_torch_models/test_llms_onnx.py
6165
6266
- name: Generate coverage report
6367
run: |

0 commit comments

Comments
 (0)