Closed marklysze closed 1 month ago
Once you merge this PR into your default branch, you're all set! Codecov will compare coverage reports and display results in all future pull requests.
:information_source: You can also turn on project coverage checks and project coverage reporting on Pull Request comment
Thanks for integrating Codecov - We've got you covered :open_umbrella:
Tested it, no .cache
dir is created when doing import autogen
. Thanks!
Why are these changes needed?
The TextMessageCompressor's
cache
parameter for__init__()
has a default value ofCache.disk()
. This is causing it to run on import rather than just on instantiation.This PR changes the default to
None
and theCache.disk()
is executed within__init__
.Related issue number
Raised by @omarhurani, #63
Checks