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

Unified Diff: test.py

Issue 355153002: Refactor infra git libs and testing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra@fake_testing_support
Patch Set: Change config ref to have a sandard naming scheme Created 6 years, 6 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
« infra/libs/types/__init__.py ('K') | « infra/services/gnumbd/test/util_test.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test.py
diff --git a/test.py b/test.py
new file mode 100755
index 0000000000000000000000000000000000000000..3b96f6c30cbb87aef602f7512ec05c47749b2103
--- /dev/null
+++ b/test.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Entry point for all tests in this repo."""
+
+assert __name__ == '__main__'
+
+from infra.ext import testing_support # pylint: disable=W0611
+from testing_support import expect_tests # pylint: disable=F0401
+
+expect_tests.main(cover_branches=True, test_modules=expect_tests.ALL_MODULES)
« infra/libs/types/__init__.py ('K') | « infra/services/gnumbd/test/util_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698