We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This plugin may be a good basis for supporting Scalatest for Gradle.
https://github.com/maiflai/gradle-scalatest
I didn't want the full functionality of the plugin, just the test action, so I ended up just hijacking that component with the following logic:
tasks.withType<Test>().configureEach { actions = mutableListOf( com.github.maiflai.ScalaTestAction(null) ) as List<Action<Task>> }
The text was updated successfully, but these errors were encountered:
It is -- I am already using it in conjunction.
Sorry, something went wrong.
So, the things so far that I've determined that don't work with this plugin:
the test report does work, the out of the box HTML is wonky though.
No branches or pull requests
This plugin may be a good basis for supporting Scalatest for Gradle.
https://github.com/maiflai/gradle-scalatest
I didn't want the full functionality of the plugin, just the test action, so I ended up just hijacking that component with the following logic:
The text was updated successfully, but these errors were encountered: