Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

no tests Gd increase tolerance #1467

Open
wants to merge 6 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions automation/submission-perf-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,10 @@ if [ $ENV = "alpha" ]; then

if [ "$submissionStatus" == "Done" ] && [ "$workflowsStatus" == "Succeeded" ]; then
echo "One-off workflow finished within 3 hours with workflow status: $workflowsStatus"

echo "${submissionStatus}" "${workflowsStatus}" > submissionResults.txt 2>&1
else
echo "failing with submission status: $submissionStatus and workflow status: $workflowsStatus"
echo "${submissionStatus}" "${workflowsStatus}" > submissionResults.txt 2>&1
exit 1
fi
##########################################################################################
Expand Down Expand Up @@ -231,11 +232,13 @@ if [ $ENV = "alpha" ]; then
done

totalFailures=$(( $failuresA+$failuresB+$failuresD+$failuresE+$failuresG ))
if [ "$totalFailures" -le 10 ]; then
if [ "$totalFailures" -le 30 ]; then
echo "Nightly Alpha test succeded with $totalFailures total failed workflows"
echo "${totalFailures}" &> submissionResults.txt 2>&1
exit 0
else
echo "Nightly Alpha test failed with $totalFailures total failed workflows"
echo "${totalFailures}" &> submissionResults.txt 2>&1
exit 1
fi

Expand Down