diff --git a/tests/sample_test.py b/tests/sample_test.py index a5d4fb70477d7e9231fecd484e8daf9c0d7443ae..4495fcbe85ba8a4351cef616e776c861eb836265 100644 --- a/tests/sample_test.py +++ b/tests/sample_test.py @@ -3,6 +3,10 @@ import os import sys class TestBasicFunction(unittest.TestCase): + + def SetUp(self): + modPath = os.path.abspath(os.getcwd()) + sys.path.insert(0, modPath) def test_running(self): print("Running sample_test.py")