Home | History | Annotate | Download | only in test

Lines Matching full:webkitpy

23 """Contains the entry method for test-webkitpy."""
30 import webkitpy
38 """Discovers and runs webkitpy unit tests."""
56 root_package_name = os.path.split(package_path)[1] # Equals "webkitpy".
75 # FIXME: This is all a hack around the fact that we always prefix webkitpy includes with "webkitpy."
76 parts.insert(0, root_package_name) # Put "webkitpy" at the beginning.
85 'webkitpy.tool',
86 'webkitpy.common.checkout',
87 'webkitpy.common.config',
93 'webkitpy.layout_tests.deduplicate_tests_unittest',
97 """Run the unit tests in all *_unittest.py modules in webkitpy.
99 This method excludes "webkitpy.common.checkout.scm_unittest" unless
109 # FIXME: We should consider moving webkitpy off of using "webkitpy." to prefix
123 webkitpy_dir = os.path.dirname(webkitpy.__file__)
143 excluded_module = "webkitpy.common.checkout.scm_unittest"