You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the way the peer nodes have their load paths modified, running the checker on module that has the same name that the peer modules use internally leads to problems.
For example, if we try to run the checker on the re module from the standard library, the peer node itself cannot even start, because starting it requires same functions from re, but because of the modified load path, it would try to find the function in the module to be checked.
One way to resolve this issue would be to modify the load path just before the function that needs to be tested is evaluated, but that could probably lead to other issues, so more investigation is needed.
The text was updated successfully, but these errors were encountered:
Due to the way the peer nodes have their load paths modified, running the checker on module that has the same name that the peer modules use internally leads to problems.
For example, if we try to run the checker on the
re
module from the standard library, the peer node itself cannot even start, because starting it requires same functions fromre
, but because of the modified load path, it would try to find the function in the module to be checked.One way to resolve this issue would be to modify the load path just before the function that needs to be tested is evaluated, but that could probably lead to other issues, so more investigation is needed.
The text was updated successfully, but these errors were encountered: