@@ -41,7 +41,8 @@ pipeline {
41
41
mkdir -p $PWD/Non_cli_qaic &&
42
42
export TOKENIZERS_PARALLELISM=false &&
43
43
export QEFF_HOME=$PWD/Non_cli_qaic &&
44
- pytest tests -m '(not cli) and (not on_qaic)' --ignore tests/vllm -n auto --junitxml=tests/tests_log1.xml &&
44
+ pytest tests -m '(not cli) and (not on_qaic) and (not vllm)' -n auto --junitxml=tests/tests_log1.xml &&
45
+ junitparser merge tests/tests_log1.xml tests/tests_log.xml &&
45
46
deactivate"
46
47
'''
47
48
}
@@ -57,7 +58,8 @@ pipeline {
57
58
mkdir -p $PWD/Non_qaic &&
58
59
export TOKENIZERS_PARALLELISM=false &&
59
60
export QEFF_HOME=$PWD/Non_qaic &&
60
- pytest tests -m '(not cli) and (on_qaic) and (not qnn)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log2.xml &&
61
+ pytest tests -m '(not cli) and (on_qaic) and (not qnn) and (not vllm)' -n 4 --junitxml=tests/tests_log2.xml &&
62
+ junitparser merge tests/tests_log2.xml tests/tests_log.xml &&
61
63
deactivate"
62
64
'''
63
65
}
@@ -77,7 +79,8 @@ pipeline {
77
79
mkdir -p $PWD/cli &&
78
80
export TOKENIZERS_PARALLELISM=false &&
79
81
export QEFF_HOME=$PWD/cli &&
80
- pytest tests -m '(cli and not qnn)' --ignore tests/vllm --junitxml=tests/tests_log3.xml &&
82
+ pytest tests -m '(cli) and (not qnn) and (not vllm)' --junitxml=tests/tests_log3.xml &&
83
+ junitparser merge tests/tests_log3.xml tests/tests_log.xml &&
81
84
deactivate"
82
85
'''
83
86
}
@@ -105,7 +108,8 @@ pipeline {
105
108
mkdir -p $PWD/Qnn_cli &&
106
109
export TOKENIZERS_PARALLELISM=false &&
107
110
export QEFF_HOME=$PWD/Qnn_cli &&
108
- pytest tests -m '(cli and qnn)' --ignore tests/vllm --junitxml=tests/tests_log4.xml &&
111
+ pytest tests -m '(cli and qnn)' and (not vllm) --junitxml=tests/tests_log4.xml &&
112
+ junitparser merge tests/tests_log4.xml tests/tests_log.xml &&
109
113
deactivate"
110
114
'''
111
115
}
@@ -123,8 +127,8 @@ pipeline {
123
127
mkdir -p $PWD/Qnn_non_cli &&
124
128
export TOKENIZERS_PARALLELISM=false &&
125
129
export QEFF_HOME=$PWD/Qnn_non_cli &&
126
- pytest tests -m '(not cli) and (qnn) and (on_qaic)' --ignore tests/ vllm --junitxml=tests/tests_log5.xml &&
127
- junitparser merge tests/tests_log1.xml tests/tests_log2.xml tests/tests_log3.xml tests/tests_log4.xml tests/ tests_log5.xml tests/tests_log.xml &&
130
+ pytest tests -m '(not cli) and (qnn) and (on_qaic)' and (not vllm) --junitxml=tests/tests_log5.xml &&
131
+ junitparser merge tests/tests_log5.xml tests/tests_log.xml &&
128
132
deactivate"
129
133
'''
130
134
}
0 commit comments