-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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 "ValueError: Plugin already registered" exceptions when running in build directories that symlink to actual source. #4738
Conversation
…n build directories that symlink to actual source.
Codecov Report
@@ Coverage Diff @@
## master #4738 +/- ##
==========================================
+ Coverage 95.67% 95.67% +<.01%
==========================================
Files 113 113
Lines 24968 24980 +12
Branches 2479 2481 +2
==========================================
+ Hits 23887 23899 +12
Misses 762 762
Partials 319 319
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #4738 +/- ##
==========================================
+ Coverage 95.67% 95.67% +<.01%
==========================================
Files 113 113
Lines 24968 24980 +12
Branches 2479 2481 +2
==========================================
+ Hits 23887 23899 +12
Misses 762 762
Partials 319 319
Continue to review full report at Codecov.
|
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.
well done, thanks
Thanks!
pt., 8 lut 2019 o 22:57 Bruno Oliveira <notifications@github.com>
napisał(a):
… Merged #4738 <#4738> into master.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#4738 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AqnE8STlcgNARGiw0IQjrFLl6CAE80ZLks5vLfLAgaJpZM4ambLl>
.
--
Paweł Stradomski
|
Some build systems (e.g. bazel) create build directories that have original source files symlinked and not copied or hardlinked.
This confused pytest which tried to refer to a conftest file by realpath in some cases and with symlink path in others, leading to "ValueError: Plugin already registered" exception. This PR fixes that.