ソースを参照

Remove --color switch from phpunit command.

Colors are already enabled in the phpunit.xml.dist file so the command line switch shouldn't be required.
ADmad 9 年 前
コミット
7391dc24a4
1 ファイル変更2 行追加2 行削除
  1. 2 2
      composer.json

+ 2 - 2
composer.json

@@ -78,7 +78,7 @@
         ],
         ],
         "cs-check": "phpcs --colors -p ./src ./tests",
         "cs-check": "phpcs --colors -p ./src ./tests",
         "cs-fix": "phpcbf --colors ./src ./tests",
         "cs-fix": "phpcbf --colors ./src ./tests",
-        "test": "phpunit --colors=always",
-        "test-coverage": "phpunit --colors=always --coverage-clover=clover.xml"
+        "test": "phpunit",
+        "test-coverage": "phpunit --coverage-clover=clover.xml"
     }
     }
 }
 }