Skip to content

Commit 180c5da

Browse files
committed
minor-fix
Signed-off-by: Amit Raj <quic_amitraj@quicinc.com>
1 parent a4c744d commit 180c5da

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

scripts/Jenkinsfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pipeline {
4141
mkdir -p $PWD/Non_cli_qaic &&
4242
export TOKENIZERS_PARALLELISM=false &&
4343
export QEFF_HOME=$PWD/Non_cli_qaic &&
44-
pytest tests -m '(not cli) and (not on_qaic) and (not vllm)' -n auto --junitxml=tests/tests_log1.xml &&
44+
pytest tests -m '(not cli) and (not on_qaic)' --ignore tests/vllm -n auto --junitxml=tests/tests_log1.xml &&
4545
junitparser merge tests/tests_log1.xml tests/tests_log.xml &&
4646
deactivate"
4747
'''
@@ -58,7 +58,7 @@ pipeline {
5858
mkdir -p $PWD/Non_qaic &&
5959
export TOKENIZERS_PARALLELISM=false &&
6060
export QEFF_HOME=$PWD/Non_qaic &&
61-
pytest tests -m '(not cli) and (on_qaic) and (not qnn) and (not vllm)' -n 4 --junitxml=tests/tests_log2.xml &&
61+
pytest tests -m '(not cli) and (on_qaic) and (not qnn)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log2.xml &&
6262
junitparser merge tests/tests_log2.xml tests/tests_log.xml &&
6363
deactivate"
6464
'''
@@ -79,7 +79,7 @@ pipeline {
7979
mkdir -p $PWD/cli &&
8080
export TOKENIZERS_PARALLELISM=false &&
8181
export QEFF_HOME=$PWD/cli &&
82-
pytest tests -m '(cli) and (not qnn) and (not vllm)' --junitxml=tests/tests_log3.xml &&
82+
pytest tests -m '(cli and not qnn)' --ignore tests/vllm --junitxml=tests/tests_log3.xml &&
8383
junitparser merge tests/tests_log3.xml tests/tests_log.xml &&
8484
deactivate"
8585
'''
@@ -108,7 +108,7 @@ pipeline {
108108
mkdir -p $PWD/Qnn_cli &&
109109
export TOKENIZERS_PARALLELISM=false &&
110110
export QEFF_HOME=$PWD/Qnn_cli &&
111-
pytest tests -m '(cli and qnn)' and (not vllm) --junitxml=tests/tests_log4.xml &&
111+
pytest tests -m '(cli and qnn)' --ignore tests/vllm --junitxml=tests/tests_log4.xml &&
112112
junitparser merge tests/tests_log4.xml tests/tests_log.xml &&
113113
deactivate"
114114
'''
@@ -127,7 +127,7 @@ pipeline {
127127
mkdir -p $PWD/Qnn_non_cli &&
128128
export TOKENIZERS_PARALLELISM=false &&
129129
export QEFF_HOME=$PWD/Qnn_non_cli &&
130-
pytest tests -m '(not cli) and (qnn) and (on_qaic)' and (not vllm) --junitxml=tests/tests_log5.xml &&
130+
pytest tests -m '(not cli) and (qnn) and (on_qaic)' --ignore tests/vllm --junitxml=tests/tests_log5.xml &&
131131
junitparser merge tests/tests_log5.xml tests/tests_log.xml &&
132132
deactivate"
133133
'''

0 commit comments

Comments
 (0)