Skip to content

Commit 948533f

Browse files
committed
fix
1 parent c8aaa92 commit 948533f

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

.github/workflows/compatiblity_test_on_dispatch.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,18 @@ jobs:
7373
7474
- name: Unit Testing
7575
run: |
76-
PYTHONPATH=$PWD pytest --durations=0 tests
76+
PYTHONPATH=$PWD pytest
77+
-m "not largedist" \
78+
--durations=0 \
79+
--ignore tests/test_analyzer \
80+
--ignore tests/test_auto_parallel \
81+
--ignore tests/test_fx \
82+
--ignore tests/test_autochunk \
83+
--ignore tests/test_gptq \
84+
--ignore tests/test_infer_ops \
85+
--ignore tests/test_legacy \
86+
--ignore tests/test_smoothquant \
87+
tests/
7788
env:
7889
DATA: /data/scratch/cifar-10
7990
LD_LIBRARY_PATH: /github/home/.tensornvme/lib

.github/workflows/compatiblity_test_on_pr.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,18 @@ jobs:
6767
6868
- name: Unit Testing
6969
run: |
70-
PYTHONPATH=$PWD pytest -m "not largedist" --durations=0 tests
70+
PYTHONPATH=$PWD pytest \
71+
-m "not largedist" \
72+
--durations=0 \
73+
--ignore tests/test_analyzer \
74+
--ignore tests/test_auto_parallel \
75+
--ignore tests/test_fx \
76+
--ignore tests/test_autochunk \
77+
--ignore tests/test_gptq \
78+
--ignore tests/test_infer_ops \
79+
--ignore tests/test_legacy \
80+
--ignore tests/test_smoothquant \
81+
tests/
7182
env:
7283
DATA: /data/scratch/cifar-10
7384
LD_LIBRARY_PATH: /github/home/.tensornvme/lib

.github/workflows/compatiblity_test_on_schedule.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,18 @@ jobs:
6161
6262
- name: Unit Testing
6363
run: |
64-
PYTHONPATH=$PWD pytest -m "not largedist" --durations=0 tests
64+
PYTHONPATH=$PWD pytest \
65+
-m "not largedist" \
66+
--durations=0 \
67+
--ignore tests/test_analyzer \
68+
--ignore tests/test_auto_parallel \
69+
--ignore tests/test_fx \
70+
--ignore tests/test_autochunk \
71+
--ignore tests/test_gptq \
72+
--ignore tests/test_infer_ops \
73+
--ignore tests/test_legacy \
74+
--ignore tests/test_smoothquant \
75+
tests/
6576
env:
6677
DATA: /data/scratch/cifar-10
6778
LD_LIBRARY_PATH: /github/home/.tensornvme/lib

0 commit comments

Comments
 (0)