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

Unified Diff: appengine/swarming/handlers_bot_test.py

Issue 1910713002: swarming: add support for cipd on the server side (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@master
Patch Set: nits Created 4 years, 8 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 | « appengine/swarming/handlers_bot.py ('k') | appengine/swarming/handlers_endpoints_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/swarming/handlers_bot_test.py
diff --git a/appengine/swarming/handlers_bot_test.py b/appengine/swarming/handlers_bot_test.py
index fa56b62ae01a1772e2b904f31a26ebd514c6348b..dfde902e2af410c42b1c15b3ae6466bb3fa7379a 100755
--- a/appengine/swarming/handlers_bot_test.py
+++ b/appengine/swarming/handlers_bot_test.py
@@ -255,6 +255,10 @@ class BotApiTest(test_env_handlers.AppTestBase):
u'host': u'http://localhost:8080',
u'inputs_ref': None,
u'io_timeout': 1200,
+ u'packages': [{
+ u'package_name': u'rm',
+ u'version': test_env_handlers.PINNED_PACKAGE_VERSION,
+ }],
u'task_id': task_id,
},
}
@@ -316,6 +320,10 @@ class BotApiTest(test_env_handlers.AppTestBase):
u'namespace': u'default-gzip',
},
u'io_timeout': 1200,
+ u'packages': [{
+ u'package_name': u'rm',
+ u'version': test_env_handlers.PINNED_PACKAGE_VERSION,
+ }],
u'task_id': task_id,
},
}
@@ -433,6 +441,10 @@ class BotApiTest(test_env_handlers.AppTestBase):
u'namespace': u'default-gzip',
},
u'io_timeout': 1200,
+ u'packages': [{
+ u'package_name': u'rm',
+ u'version': test_env_handlers.PINNED_PACKAGE_VERSION,
+ }],
u'task_id': task_id,
},
}
« no previous file with comments | « appengine/swarming/handlers_bot.py ('k') | appengine/swarming/handlers_endpoints_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698