Feature/import fixes
Created by: ozansz
- Fixed import errors on test scripts under
tests/
- Test scripts was trying to import upper directory modules without proper Python project structure, so I've used
sys.path.insert(0, os.getcwd())
to include the upper directory path to the module path variable.