Move tests out to project root. Use absolute import in project

tests/ directory in project root is more standard.
Just had to use absolute path for internal module imports to get it to
work
This commit is contained in:
Debanjum Singh Solanky
2021-09-30 04:12:14 -07:00
parent 58bb420f69
commit d2905c4be6
18 changed files with 27 additions and 27 deletions

View File

@@ -8,8 +8,8 @@ import glob
import gzip
# Internal Packages
from processor.org_mode import orgnode
from utils.helpers import get_absolute_path, is_none_or_empty
from src.processor.org_mode import orgnode
from src.utils.helpers import get_absolute_path, is_none_or_empty
# Define Functions

View File

@@ -8,8 +8,8 @@ import glob
import gzip
# Internal Packages
from processor.org_mode import orgnode
from utils.helpers import get_absolute_path, is_none_or_empty
from src.processor.org_mode import orgnode
from src.utils.helpers import get_absolute_path, is_none_or_empty
# Define Functions