Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: content/test/gpu/gpu_tests/pixel_integration_test.py

Issue 2616253002: Add typ boilerplate to Telemetry-based GPU tests. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/test/gpu/gpu_tests/pixel_integration_test.py
diff --git a/content/test/gpu/gpu_tests/pixel_integration_test.py b/content/test/gpu/gpu_tests/pixel_integration_test.py
index 4633c6c8290ec15369de96c2a3d874b17f07354d..f5e723af803322c6568ecdec37f5823175d12c84 100644
--- a/content/test/gpu/gpu_tests/pixel_integration_test.py
+++ b/content/test/gpu/gpu_tests/pixel_integration_test.py
@@ -7,6 +7,7 @@ import os
import re
import sys
+from gpu_tests import gpu_integration_test
from gpu_tests import cloud_storage_integration_test_base
from gpu_tests import pixel_expectations
from gpu_tests import pixel_test_pages
@@ -227,3 +228,7 @@ class PixelIntegrationTest(
self._WriteImage(image_path, screenshot)
return screenshot
+
+def load_tests(loader, tests, pattern):
+ del loader, tests, pattern # Unused.
+ return gpu_integration_test.LoadAllTestsInModule(sys.modules[__name__])

Powered by Google App Engine
This is Rietveld 408576698