-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Avoid subprocess when SKIPIF triggers IO #6022
Conversation
7444297
to
258d3c7
Compare
Child Process Started | ||
Child Process Finished | ||
Child Process Started | ||
Child Process Finished |
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.
require + test-itself is running in subprocess
Child Process Started | ||
Child Process Finished |
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.
only the test itself is running in subprocess. skipif subprocess avoided.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## 11.5 #6022 +/- ##
=========================================
Coverage 94.79% 94.79%
+ Complexity 6829 6824 -5
=========================================
Files 722 722
Lines 21681 21669 -12
=========================================
- Hits 20553 20542 -11
+ Misses 1128 1127 -1 ☔ View full report in Codecov by Sentry. |
I realized that since we already separate include/require from other IO functions, we can run tests which only do IO (like for filesystem cleanup stuff) in the main process (like we already do for
--CLEAN--
).followup to #5998, #5999