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