io.enfuse.ChatGPTPlugin
Owner: Enfuse.io
Leverage ChatGPT to enable quicker test failure resolution
https://github.com/enfuse/chatgpt-test-gradle-plugin
Sources: https://github.com/enfuse/chatgpt-test-gradle-plugin
Version 0.0.4
0.0.4
Created 11 April 2023.
Automatically pipe test failures to ChatGPT for to enable quicker resolution of failures. Supports groovy, java, kotlin and more. Simply include the plugin, add your openAIKey, run gradle test and watch ChatGPT debug your test failures!
Add this plugin to your build using the plugins DSL:
plugins {
id("io.enfuse.ChatGPTPlugin") version "0.0.4"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.enfuse.plugin:chatgpt-test-gradle-plugin:0.0.4") } } apply(plugin = "io.enfuse.ChatGPTPlugin")
- Applying plugins to all subprojects .