I need to run tests with Gradle in a specific package of my app with a command line, in a fastfile. I'm using this command
sh './gradlew test --tests "com.package.exemple.*"'
but it give me this error
Problem configuring task :app:test from command line.
>Unknown command-line option '--tests'.
I tried a lot of variants but no one worked.
Thanks for your help !