Skip to content

Commit c9fd8ea

Browse files
authored
Merge branch 'main' into TF_version_4.55_upgrade
2 parents 7bf2298 + 247df36 commit c9fd8ea

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/Jenkinsfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pipeline {
4242
mkdir -p $PWD/Non_cli_qaic &&
4343
export TOKENIZERS_PARALLELISM=false &&
4444
export QEFF_HOME=$PWD/Non_cli_qaic &&
45-
pytest tests -m '(not cli) and (not on_qaic) and (not finetune)' --ignore tests/vllm -n auto --junitxml=tests/tests_log1.xml &&
45+
pytest tests -m '(not cli) and (not on_qaic) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log1.xml &&
4646
junitparser merge tests/tests_log1.xml tests/tests_log.xml &&
4747
deactivate"
4848
'''
@@ -59,7 +59,7 @@ pipeline {
5959
mkdir -p $PWD/Non_qaic &&
6060
export TOKENIZERS_PARALLELISM=false &&
6161
export QEFF_HOME=$PWD/Non_qaic &&
62-
pytest tests -m '(not cli) and (on_qaic) and (not nightly) and (not multimodal) and (not qnn) and (not finetune)' --ignore tests/vllm -n 3 --junitxml=tests/tests_log2.xml &&
62+
pytest tests -m '(not cli) and (on_qaic) and (not nightly) and (not multimodal) and (not qnn) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log2.xml &&
6363
junitparser merge tests/tests_log2.xml tests/tests_log.xml &&
6464
deactivate"
6565
'''
@@ -78,7 +78,7 @@ pipeline {
7878
mkdir -p $PWD/Non_cli_qaic_multimodal &&
7979
export TOKENIZERS_PARALLELISM=false &&
8080
export QEFF_HOME=$PWD/Non_cli_qaic_multimodal &&
81-
pytest tests -m '(not cli) and (on_qaic) and (multimodal) and (not qnn) and (not finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log6.xml &&
81+
pytest tests -m '(not cli) and (on_qaic) and (multimodal) and (not qnn) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log6.xml &&
8282
junitparser merge tests/tests_log6.xml tests/tests_log.xml &&
8383
deactivate"
8484
'''
@@ -97,7 +97,7 @@ pipeline {
9797
mkdir -p $PWD/cli &&
9898
export TOKENIZERS_PARALLELISM=false &&
9999
export QEFF_HOME=$PWD/cli &&
100-
pytest tests -m '(cli and not qnn) and (not finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log3.xml &&
100+
pytest tests -m '(cli and not qnn) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log3.xml &&
101101
junitparser merge tests/tests_log3.xml tests/tests_log.xml &&
102102
deactivate"
103103
'''
@@ -116,7 +116,7 @@ pipeline {
116116
mkdir -p $PWD/Qnn_cli &&
117117
export TOKENIZERS_PARALLELISM=false &&
118118
export QEFF_HOME=$PWD/Qnn_cli &&
119-
pytest tests -m '(cli and qnn) and (not finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log4.xml &&
119+
pytest tests -m '(cli and qnn) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log4.xml &&
120120
junitparser merge tests/tests_log4.xml tests/tests_log.xml &&
121121
deactivate"
122122
'''
@@ -135,7 +135,7 @@ pipeline {
135135
mkdir -p $PWD/Qnn_non_cli &&
136136
export TOKENIZERS_PARALLELISM=false &&
137137
export QEFF_HOME=$PWD/Qnn_non_cli &&
138-
pytest tests -m '(not cli) and (qnn) and (not nightly) and (on_qaic) and (not multimodal) and (not finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log5.xml &&
138+
pytest tests -m '(not cli) and (qnn) and (not nightly) and (on_qaic) and (not multimodal) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log5.xml &&
139139
junitparser merge tests/tests_log5.xml tests/tests_log.xml &&
140140
deactivate"
141141
'''
@@ -154,7 +154,7 @@ pipeline {
154154
mkdir -p $PWD/Non_cli_qnn_multimodal &&
155155
export TOKENIZERS_PARALLELISM=false &&
156156
export QEFF_HOME=$PWD/Non_cli_qnn_multimodal &&
157-
pytest tests -m '(not cli) and (on_qaic) and (multimodal) and (qnn)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log7.xml &&
157+
pytest tests -m '(not cli) and (on_qaic) and (multimodal) and (qnn)' --ignore tests/vllm --junitxml=tests/tests_log7.xml &&
158158
junitparser merge tests/tests_log7.xml tests/tests_log.xml &&
159159
deactivate"
160160
'''

0 commit comments

Comments
 (0)