Hi, I was getting an exception when I tried to run the test program. A bit of searching later I discovered the problem is that it expects absolute paths to functions. If you change line 80 from:
'func_path': func_path,
to:
'func_path': os.path.abspath(func_path),
Hi, I was getting an exception when I tried to run the test program. A bit of searching later I discovered the problem is that it expects absolute paths to functions. If you change line 80 from: 'func_path': func_path, to: 'func_path': os.path.abspath(func_path),
It fixes it. What do you think?