-
Type: Improvement
-
Resolution: Won't Fix
-
Priority: Major - P3
-
None
-
Affects Version/s: None
-
Component/s: Testing Infrastructure
-
Server Tooling & Methods
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