diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/tools/localpaths.py | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/tools/localpaths.py')
-rw-r--r-- | testing/web-platform/tests/tools/localpaths.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/tools/localpaths.py b/testing/web-platform/tests/tools/localpaths.py new file mode 100644 index 0000000000..e8095ac69d --- /dev/null +++ b/testing/web-platform/tests/tools/localpaths.py @@ -0,0 +1,37 @@ +import os +import sys + +here = os.path.abspath(os.path.dirname(__file__)) +repo_root = os.path.abspath(os.path.join(here, os.pardir)) + +sys.path.insert(0, os.path.join(here)) +sys.path.insert(0, os.path.join(here, "wptserve")) +sys.path.insert(0, os.path.join(here, "third_party", "pywebsocket3")) +sys.path.insert(0, os.path.join(here, "third_party", "atomicwrites")) +sys.path.insert(0, os.path.join(here, "third_party", "attrs", "src")) +sys.path.insert(0, os.path.join(here, "third_party", "funcsigs")) +sys.path.insert(0, os.path.join(here, "third_party", "html5lib")) +sys.path.insert(0, os.path.join(here, "third_party", "zipp")) +sys.path.insert(0, os.path.join(here, "third_party", "more-itertools")) +sys.path.insert(0, os.path.join(here, "third_party", "packaging")) +sys.path.insert(0, os.path.join(here, "third_party", "pathlib2")) +sys.path.insert(0, os.path.join(here, "third_party", "pluggy", "src")) +sys.path.insert(0, os.path.join(here, "third_party", "py")) +sys.path.insert(0, os.path.join(here, "third_party", "pytest")) +sys.path.insert(0, os.path.join(here, "third_party", "pytest", "src")) +sys.path.insert(0, os.path.join(here, "third_party", "pytest-asyncio")) +sys.path.insert(0, os.path.join(here, "third_party", "six")) +sys.path.insert(0, os.path.join(here, "third_party", "typing_extensions", "src")) +sys.path.insert(0, os.path.join(here, "third_party", "webencodings")) +sys.path.insert(0, os.path.join(here, "third_party", "h2")) +sys.path.insert(0, os.path.join(here, "third_party", "hpack")) +sys.path.insert(0, os.path.join(here, "third_party", "hyperframe")) +sys.path.insert(0, os.path.join(here, "third_party", "certifi")) +sys.path.insert(0, os.path.join(here, "third_party", "hyper")) +sys.path.insert(0, os.path.join(here, "third_party", "websockets", "src")) +sys.path.insert(0, os.path.join(here, "third_party", "iniconfig", "src")) +if sys.version_info < (3, 8): + sys.path.insert(0, os.path.join(here, "third_party", "importlib_metadata")) +sys.path.insert(0, os.path.join(here, "webdriver")) +sys.path.insert(0, os.path.join(here, "wptrunner")) +sys.path.insert(0, os.path.join(here, "webtransport")) |