mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
- Update CSS tests to revision e05bfd5e30ed662c2f8a353577003f8eed230180. - Update web-platform-tests to revision a052787dd5c069a340031011196b73affbd68cd9.
14 lines
527 B
Python
14 lines
527 B
Python
import os
|
|
import sys
|
|
|
|
here = os.path.abspath(os.path.split(__file__)[0])
|
|
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, "six"))
|
|
sys.path.insert(0, os.path.join(here, "html5lib"))
|
|
sys.path.insert(0, os.path.join(here, "wptserve"))
|
|
sys.path.insert(0, os.path.join(here, "pywebsocket", "src"))
|
|
sys.path.insert(0, os.path.join(here, "py"))
|
|
sys.path.insert(0, os.path.join(here, "pytest"))
|
|
sys.path.insert(0, os.path.join(here, "webdriver"))
|