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
The way we are structuring the code right now, and the way we specify the import paths causes some trouble. When launching the notebook scripts, and when testing, it runs fine. But we are not able to debug the code due to import issues. And also we have done some tricky hacks to make everything work.
A big problem to solve is that we run the code in two different situations:
Running code from the root of the project, having ./src/lib and ./src/test below
Running a local test with the debugging tool, where our cwd is ./src/test and we have ../lib above
The text was updated successfully, but these errors were encountered:
The way we are structuring the code right now, and the way we specify the import paths causes some trouble. When launching the notebook scripts, and when testing, it runs fine. But we are not able to debug the code due to import issues. And also we have done some tricky hacks to make everything work.
A big problem to solve is that we run the code in two different situations:
./src/lib
and./src/test
belowcwd
is./src/test
and we have../lib
aboveThe text was updated successfully, but these errors were encountered: