@@ -67,7 +67,7 @@ if [ "${common}" -eq 1 ]; then
67
67
tox tests/common -- --url=${URL} --source=${SOURCE} --plugin
68
68
RETVAL=$?
69
69
if [ " ${RETVAL} " -eq 1 ]; then
70
- mail -s
" Selenium Tests: ${IDENTIFIER} Failed To Run" [email protected] <<< ' Something went wrong with common tests. Please check the logs.'
70
+ mail -s " Selenium Tests: ${IDENTIFIER} Failed To Run" ${EMAIL} <<< ' Something went wrong with common tests. Please check the logs.'
71
71
fi
72
72
exit ${RETVAL}
73
73
elif [ " ${examples} " -eq 1 ]; then
@@ -88,7 +88,7 @@ elif [ "${noplugin}" -eq 1 ]; then
88
88
tox tests/noplugin -- --url=${URL} --source=${SOURCE}
89
89
RETVAL=$?
90
90
if [ " ${RETVAL} " -eq 1 ]; then
91
- mail -s
" Selenium Tests: ${IDENTIFIER} Failed To Run" [email protected] <<< ' Something went wrong with noplugin tests. Please check the logs.'
91
+ mail -s " Selenium Tests: ${IDENTIFIER} Failed To Run" ${EMAIL} <<< ' Something went wrong with noplugin tests. Please check the logs.'
92
92
fi
93
93
exit ${RETVAL}
94
94
elif [ " ${walkthrough} " -eq 1 ]; then
@@ -115,7 +115,7 @@ elif [ "${walkthrough}" -eq 1 ]; then
115
115
fi
116
116
done
117
117
if [ " ${RETVAL} " -ne 0 ]; then
118
- mail -s
" Selenium Tests: ${IDENTIFIER} Failed To Run" [email protected] <<< ' Something went wrong with noplugin tests. Please check the logs.'
118
+ mail -s " Selenium Tests: ${IDENTIFIER} Failed To Run" ${EMAIL} <<< ' Something went wrong with noplugin tests. Please check the logs.'
119
119
fi
120
120
exit ${RETVAL}
121
121
fi
@@ -130,4 +130,4 @@ diffnum=$(ls -t ${REPORTS} | egrep "${DATE}.*${IDENTIFIER}" | head -1 | cut -d'_
130
130
changes=${diffnum: 0: 1}
131
131
132
132
(echo " Changes since the last time: ${changes} " ; uuencode " ${LOGS} /${LOGFILE} " " ${LOGFILE} " ; uuencode " ${REPORTS} /${REPORTFILE} " " ${REPORTFILE} " ) \
133
- | mail -s
" Selenium Tests Report: ${IDENTIFIER} ${email_date} Changes: ${changes} " [email protected]
133
+ | mail -s " Selenium Tests Report: ${IDENTIFIER} ${email_date} Changes: ${changes} " ${EMAIL}
0 commit comments