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

Unified Diff: tools/bots/pub.py

Issue 2914233002: Allow test.py to run dartdoc tests. Run dartdoc tests on pub bots. (Closed)
Patch Set: Created 3 years, 7 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
« no previous file with comments | « no previous file | tools/testing/dart/test_configurations.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/pub.py
diff --git a/tools/bots/pub.py b/tools/bots/pub.py
index 7f177e073b6b16c2cb5651d9858bf92fc4cc7a26..deb9b6d2b543c8a012925cbf8bb6ef7d38a327b8 100755
--- a/tools/bots/pub.py
+++ b/tools/bots/pub.py
@@ -37,9 +37,12 @@ def PubConfig(name, is_buildbot):
def PubSteps(build_info):
pub_location = os.path.join('third_party', 'pkg', 'pub')
-
with bot.BuildStep('Running pub tests'):
bot.RunTestRunner(build_info, pub_location)
+ dartdoc_location = os.path.join('third_party', 'pkg', 'dartdoc')
+ with bot.BuildStep('Running dartdoc tests'):
+ bot.RunTestRunner(build_info, dartdoc_location)
+
if __name__ == '__main__':
bot.RunBot(PubConfig, PubSteps)
« no previous file with comments | « no previous file | tools/testing/dart/test_configurations.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698