We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef9349e commit 4a2fa78Copy full SHA for 4a2fa78
scripts/Jenkinsfile
@@ -66,6 +66,23 @@ pipeline {
66
}
67
68
69
+ stage('Run Non-CLI QAIC MultiModal Tests') {
70
+ steps {
71
+ timeout(time: 60, unit: 'MINUTES') {
72
+ sh '''
73
+ sudo docker exec ${BUILD_TAG} bash -c "
74
+ cd /efficient-transformers &&
75
+ . preflight_qeff/bin/activate &&
76
+ mkdir -p $PWD/Non_cli_qaic_multimodal &&
77
+ export TOKENIZERS_PARALLELISM=false &&
78
+ export QEFF_HOME=$PWD/Non_cli_qaic_multimodal &&
79
+ pytest tests -m '(not cli) and (on_qaic) and (multimodal) and (not qnn)' -n 4 --junitxml=tests/tests_log6.xml &&
80
+ junitparser merge tests/tests_log6.xml tests/tests_log.xml &&
81
+ deactivate"
82
+ '''
83
+ }
84
85
86
87
88
stage('CLI Tests') {
0 commit comments