I am using pytest nbmake in order to run unit tests on python notebooks. My notebooks work fine but when I try to run the unit tests I run into this error :
FAILED notebooks/analyze_curves.ipynb:: - ModuleNotFoundError: No module named 'computing'
My project structure looks like this:
And this is what my imports look like:
Since my notebooks run fine, I think the problem is from pytest nbmake not being able to import modules properly.
Does anyone knows how to fix this issue ?