gradleでのテスト関係のオプション例

ビルドのみ(テストしない)

./gradlew build -x test

指定のテストを実行

./gradlew test --tests "SomeTest.*"