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
With the new build system, importing test files to retrieve the functions used to generate the baseline no longer works.
module=importlib.import_module(mn)
We must add now:
sys.path.insert(0, "")
to allow local import but there is a directory called io which collide with the io standard library ...
One way is to import from tests directory instead of importing:
importio
use
importtests.io
It can be done by changing the current directory:
os.chdir("..")
The text was updated successfully, but these errors were encountered:
With the new build system, importing test files to retrieve the functions used to generate the baseline no longer works.
We must add now:
to allow local import but there is a directory called
io
which collide with theio
standard library ...One way is to import from tests directory instead of importing:
use
It can be done by changing the current directory:
The text was updated successfully, but these errors were encountered: