-
Notifications
You must be signed in to change notification settings - Fork 455
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
fix: reprime for try #4347
fix: reprime for try #4347
Conversation
This solves the case where prime was run before try, where a subsequent run of try would mask the contents of the existing prime directory with a newly mounted one from the host. In legacy we had the concept of `clean --unprime` to solve this. Signed-off-by: Sergio Schvezov <[email protected]>
4e5c3c5
to
526fad1
Compare
Fixes #4219 |
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the GitHub App Integration for your organization. Read more. @@ Coverage Diff @@
## hotfix/7.5 #4347 +/- ##
==============================================
- Coverage 94.88% 94.88% -0.01%
==============================================
Files 658 658
Lines 55122 55132 +10
==============================================
+ Hits 52303 52312 +9
- Misses 2819 2820 +1
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, please fix the minor docstring issue
Co-authored-by: Tiago Nobrega <[email protected]>
This solves the case where prime was run before try, where a subsequent run of try would mask the contents of the existing prime directory with a newly mounted one from the host. In legacy we had the concept of
clean --unprime
to solve this.make lint
?pytest tests/unit
?Fixes #4219