1
0
Fork 0
firefox/testing/web-platform/mozilla/tests/webdriver/conftest.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
349 B
Python

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 = [
"tests.support.fixtures",
"tests.support.fixtures_bidi",
"tests.support.fixtures_http",
"support.fixtures",
]