-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
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
Comparison to junit4git / storing Test Impact Analysis as Git notes #157
Comments
Reading about the latest 0.0.19 release, this sounds like a good candidate for a SkippyRepositoryExtension interface implementation. Though if the data can really grow that large, maybe leveraging GitHub action cache would be more feasible... probably https://www.skippy.io/docs/#skippy-in-your-ci-pipeline would be a good place to add docs on how to cache the |
I was not able to run junit4git. Reason: rpau/junit4git#20 That's why I can't provide a comparison. Let me provide my design goals instead:
Regarding storage as Git note: My reasoning was: Why depend on Git if you can easily come up with a solution that is independent of the VCS? That being said, supporting other VCS systems is not a prioriy. My workflow looks like this:
In this scenario, you don't need a separate commit to update the impact data.
Yes, absolutely: #158
I will take a stab at writing an extension that stores the impact data as Git note.
Thanks for the pointer - I haven't used this cache before. I'll check it out. |
Just looked up some stats: For the Spring Boot core repository (I use a fork as my benchmark), the size of |
Thanks for the detailed answers! I believe everything was addressed to the extent possible, and / or there are follow-up issues, so feel free to close this. It's a very good reference post in any case! |
This looks like a great project, and reminds me quite a bit of https://github.com/rpau/junit4git! It'd be interesting to get some comparison about the differences / commonalities regarding the features and technical approaches.
One thing that comes to my mind is the IMO very smart idea of junit4git to store Test Impact Analysis data not as a file that you need to commit (creating a new Git revision), but as a Git note that can be attached to exactly the commit it was generated for, and thus shared easily, even for past commits.
Is that a feature that could be considered for Skippy as well?
The text was updated successfully, but these errors were encountered: