Move all utils to common folder (#7303)

* move all utils to common folder

* add utils install in CMakeLists.txt

* revert plugin utils

* add log info: test

* add logging info: test

* test imports

* change imports: test

* fix file name
This commit is contained in:
Victor Kuznetsov
2021-09-07 23:02:10 +03:00
committed by GitHub
parent d5e063d435
commit 4d377901bf
18 changed files with 205 additions and 230 deletions

View File

@@ -11,8 +11,8 @@ import sys
from inspect import getsourcefile
from pathlib import Path
# add ../lib to imports
sys.path.insert(0, str((Path(getsourcefile(lambda: 0)) / ".." / ".." / "lib").resolve(strict=True)))
# add utils folder to imports
sys.path.insert(0, str((Path(getsourcefile(lambda: 0)) / ".." / ".." / "utils").resolve(strict=True)))
import yaml
import pytest