Skip to content

Commit e479263

Browse files
committed
Updated Jenkins file based on previous CI failures.
Signed-off-by: Meet Patel <[email protected]>
1 parent ea3069f commit e479263

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

scripts/Jenkinsfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pipeline {
4343
mkdir -p $PWD/Non_cli_qaic &&
4444
export TOKENIZERS_PARALLELISM=false &&
4545
export QEFF_HOME=$PWD/Non_cli_qaic &&
46-
pytest tests -m '(not cli) and (not on_qaic)' --ignore tests/vllm -n auto --junitxml=tests/tests_log1.xml &&
46+
pytest tests -m '(not cli) and (not on_qaic) and (not finetune)' --ignore tests/vllm -n auto --junitxml=tests/tests_log1.xml &&
4747
junitparser merge tests/tests_log1.xml tests/tests_log.xml &&
4848
deactivate"
4949
'''
@@ -60,7 +60,7 @@ pipeline {
6060
mkdir -p $PWD/Non_qaic &&
6161
export TOKENIZERS_PARALLELISM=false &&
6262
export QEFF_HOME=$PWD/Non_qaic &&
63-
pytest tests -m '(not cli) and (on_qaic) and (not qnn)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log2.xml &&
63+
pytest tests -m '(not cli) and (on_qaic) and (not qnn) and (not finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log2.xml &&
6464
junitparser merge tests/tests_log2.xml tests/tests_log.xml &&
6565
deactivate"
6666
'''
@@ -79,7 +79,7 @@ pipeline {
7979
mkdir -p $PWD/Non_cli_qaic_multimodal &&
8080
export TOKENIZERS_PARALLELISM=false &&
8181
export QEFF_HOME=$PWD/Non_cli_qaic_multimodal &&
82-
pytest tests -m '(not cli) and (on_qaic) and (multimodal) and (not qnn)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log6.xml &&
82+
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 &&
8383
junitparser merge tests/tests_log6.xml tests/tests_log.xml &&
8484
deactivate"
8585
'''
@@ -98,7 +98,7 @@ pipeline {
9898
mkdir -p $PWD/cli &&
9999
export TOKENIZERS_PARALLELISM=false &&
100100
export QEFF_HOME=$PWD/cli &&
101-
pytest tests -m '(cli and not qnn)' --ignore tests/vllm --junitxml=tests/tests_log3.xml &&
101+
pytest tests -m '(cli and not qnn) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log3.xml &&
102102
junitparser merge tests/tests_log3.xml tests/tests_log.xml &&
103103
deactivate"
104104
'''
@@ -127,7 +127,7 @@ pipeline {
127127
mkdir -p $PWD/Qnn_cli &&
128128
export TOKENIZERS_PARALLELISM=false &&
129129
export QEFF_HOME=$PWD/Qnn_cli &&
130-
pytest tests -m '(cli and qnn)' --ignore tests/vllm --junitxml=tests/tests_log4.xml &&
130+
pytest tests -m '(cli and qnn) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log4.xml &&
131131
junitparser merge tests/tests_log4.xml tests/tests_log.xml &&
132132
deactivate"
133133
'''
@@ -146,7 +146,7 @@ pipeline {
146146
mkdir -p $PWD/Qnn_non_cli &&
147147
export TOKENIZERS_PARALLELISM=false &&
148148
export QEFF_HOME=$PWD/Qnn_non_cli &&
149-
pytest tests -m '(not cli) and (qnn) and (on_qaic)' --ignore tests/vllm --junitxml=tests/tests_log5.xml &&
149+
pytest tests -m '(not cli) and (qnn) and (on_qaic) and (not finetune)' --ignore tests/vllm --junitxml=tests/tests_log5.xml &&
150150
junitparser merge tests/tests_log5.xml tests/tests_log.xml &&
151151
deactivate"
152152
'''

0 commit comments

Comments
 (0)