CONTRIBUTING.md mentions building and running test...
# koog-agentic-framework
a
CONTRIBUTING.md mentions building and running tests before contributing a PR, but that seems to run requests against OpenAI. Is is not possible to build the project and make PRs without having an OpenAI API key?
v
Hi! Thanks for asking. No, you can for sure proceed without that integration tests — they’ll run on our CI anyway. That requirement in contributing.md is more about unit tests (and integration tests either on CI or if you are actually changing something that is related to OpenAI specifically — please feel free to check that it actually works with your own key locally, otherwise, it shouldn’t be a problem)
a
Thanks, can you give me some pointers how I can run only the required unit tests?
a
Hi! Sure, please run the
jvmTest
Gradle target – that should be enough.
a
Cheers!
🙌 1