ソースを参照

Drop the test coverage threshold to account for the new way that the tests are executed

Ben Hood 11 年 前
コミット
648b9bddf2
1 ファイル変更2 行追加2 行削除
  1. 2 2
      integration.sh

+ 2 - 2
integration.sh

@@ -28,8 +28,8 @@ function run_tests() {
 
 	cat results
 	cover=`cat results | grep coverage: | grep -o "[0-9]\{1,3\}" | head -n 1`
-	if [[ $cover -lt "64" ]]; then
-		echo "--- FAIL: expected coverage of at least 64 %, but coverage was $cover %"
+	if [[ $cover -lt "60" ]]; then
+		echo "--- FAIL: expected coverage of at least 60 %, but coverage was $cover %"
 		exit 1
 	fi
 	ccm clear