I'm using Flask framework and would like to test a single class (not Flask app, and I've read the test documentation here)
My folder structure is like below picture, and init.py for each folder.
But I tried all below but none of them works.
from ... import grouper
or
import reporting.dashboard.helpers.grouper
or
import dashboard
from dashboard.helpers.grouper import Grouper
Could anyone please give me some hints on how to include
reporting/dashboard/helpers/grouper.py
in my test module located at
reporting/tests/helpers/helper-test.py
?
Thanks a lot.