Lines Matching full:webkitpy
35 # Do not import anything from webkitpy prior to cleaning webkitpy of
43 _log = logging.getLogger("test-webkitpy")
46 # Verbose logging is useful for debugging test-webkitpy code that runs
53 Configure the root logger not to log any messages from webkitpy --
87 # Filter out most webkitpy messages.
92 """Filter out autoinstall and non-third-party webkitpy messages."""
94 # using syntax like webkitpy.test.__name__. We want to be
97 if (record.name.startswith("webkitpy.common.system.autoinstall") or
98 record.name.startswith("webkitpy.test")):
100 if record.name.startswith("webkitpy"):
109 _log.info("Suppressing most webkitpy logging while running unit tests.")
141 webkitpy_dir = os.path.join(os.path.dirname(__file__), "webkitpy")
145 # webkitpy/python24/TEMP_test-webkitpy_test_pyc_file.pyc.
151 test_file.write("Test .pyc file generated by test-webkitpy.")
168 """Execute code prior to importing from webkitpy.unittests.
197 # For example, if webkitpy/python24/versioning.py were moved to a
200 # then "import webkitpy.python24.versioning" would continue to succeed
215 import webkitpy.python24.versioning as versioning
224 message = ("You are testing webkitpy with a Python version (%s) "
258 # while interpreting webkitpy.unittests. This also allows
262 from webkitpy.test.main import Tester