Details
-
Improvement
-
Resolution: Won't Fix
-
Major - P3
-
None
-
None
-
Server Tooling & Methods
Description
If we have a syntax error in a yml file, we need to avoid failing suites because of that. We can short term handle this with:
for suite in $(ls buildscripts/resmokeconfig/suites/*.yml | egrep -v "mongos_test|no_server|with_server"); do
|
python buildscripts/resmoke.py --dryRun tests --suite $(basename $suite | sed s/.yml//);
|
if [ $? -ne 0 ];
|
then echo $suite has syntax issues;
|
break;
|
fi;
|
done
|