@@ -65,43 +65,43 @@ pipeline {
6565 }
6666 }
6767 }
68- stage(' Run Non-CLI QAIC Finetuning Tests' ) {
69- steps {
70- timeout(time : 200 , unit : ' MINUTES' ) {
71- sh '''
72- sudo docker exec ${BUILD_TAG} bash -c "
73- cd /efficient-transformers &&
74- . preflight_qeff/bin/activate &&
75- mkdir -p $PWD/Non_cli_qaic_finetuning &&
76- export TOKENIZERS_PARALLELISM=false &&
77- export QEFF_HOME=$PWD/Non_cli_qaic_finetuning &&
78- pytest tests -m '(not cli) and (on_qaic) and (not qnn) and (finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log3.xml &&
79- junitparser merge tests/tests_log3.xml tests/tests_log.xml &&
80- deactivate"
81- '''
82- }
83- }
84- }
8568 }
8669 }
8770 stage(' CLI Tests' ) {
88- steps {
89- timeout(time : 60 , unit : ' MINUTES' ) {
90- sh '''
91- sudo docker exec ${BUILD_TAG} bash -c "
92- source /qnn_sdk/bin/envsetup.sh &&
93- source /qnn_sdk/bin/envcheck -c &&
94- cd /efficient-transformers &&
95- . preflight_qeff/bin/activate &&
96- mkdir -p $PWD/cli &&
97- export TOKENIZERS_PARALLELISM=false &&
98- export QEFF_HOME=$PWD/cli &&
99- pytest tests -m '(cli and not qnn)' --ignore tests/vllm --junitxml=tests/tests_log3.xml &&
100- junitparser merge tests/tests_log3.xml tests/tests_log.xml &&
101- deactivate"
102- '''
103- }
104- }
71+ stage(' Run QAIC Finetuning Tests' ) {
72+ steps {
73+ timeout(time : 5 , unit : ' MINUTES' ) {
74+ sh '''
75+ sudo docker exec ${BUILD_TAG} bash -c "
76+ cd /efficient-transformers &&
77+ . preflight_qeff/bin/activate &&
78+ mkdir -p $PWD/Non_cli_qaic_finetuning &&
79+ export TOKENIZERS_PARALLELISM=false &&
80+ export QEFF_HOME=$PWD/Non_cli_qaic_finetuning &&
81+ pytest tests -m '(cli) and (on_qaic) and (not qnn) and (finetune)' --ignore tests/vllm -n 4 --junitxml=tests/tests_log_finetune.xml &&
82+ junitparser merge tests/tests_log_finetune.xml tests/tests_log.xml &&
83+ deactivate"
84+ '''
85+ }
86+ }
87+ }
88+ steps {
89+ timeout(time : 60 , unit : ' MINUTES' ) {
90+ sh '''
91+ sudo docker exec ${BUILD_TAG} bash -c "
92+ source /qnn_sdk/bin/envsetup.sh &&
93+ source /qnn_sdk/bin/envcheck -c &&
94+ cd /efficient-transformers &&
95+ . preflight_qeff/bin/activate &&
96+ mkdir -p $PWD/cli &&
97+ export TOKENIZERS_PARALLELISM=false &&
98+ export QEFF_HOME=$PWD/cli &&
99+ pytest tests -m '(cli and not qnn)' --ignore tests/vllm --junitxml=tests/tests_log3.xml &&
100+ junitparser merge tests/tests_log3.xml tests/tests_log.xml &&
101+ deactivate"
102+ '''
103+ }
104+ }
105105 }
106106 stage(' vLLM Tests' ) {
107107
0 commit comments