conftest.py (349B)
1 import os 2 import sys 3 4 base = os.path.dirname(__file__) 5 webdriver_path = os.path.abspath( 6 os.path.join(base, "..", "..", "..", "tests", "webdriver") 7 ) 8 sys.path.insert(0, os.path.join(webdriver_path)) 9 10 pytest_plugins = [ 11 "tests.support.fixtures", 12 "tests.support.fixtures_bidi", 13 "tests.support.fixtures_http", 14 "support.fixtures", 15 ]