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

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: 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/git2/util.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..b620f8b23fca67e465625fb263c94af451efc5e7
--- /dev/null
+++ b/test.py
@@ -0,0 +1,15 @@
+#!/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
agable 2014/06/27 18:53:12 I will make this MAGICAL
+
+expect_tests.main(
+ cover_branches=True,
+ test_modules=expect_tests.EVERYTHING)
« infra/libs/git2/util.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