Answers for "pytest local modules"

0

pytest local modules

import sys, os
myPath = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, myPath + '/../')

# from https://stackoverflow.com/questions/10253826/path-issue-with-pytest-importerror-no-module-named-yadayadayada
Posted by: Guest on March-28-2020

Python Answers by Framework

Browse Popular Code Answers by Language