I launch IPython from the main folder /project. Now if I make changes in the file /project/tests/some_module.py, the changes fail to be autoreloade
/project
/project/tests/some_module.py
Try changing your file use_some_module.py to:
use_some_module.py
import some_module some_module.hello_world()
Reload with from import usually does not work.
from import
This works for me:
%autoreload 1 %aimport use_some_module %aimport some_module