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

Unified Diff: appengine/swarming/handlers_bot_test.py

Issue 2069903003: swarming: custom cipd package paths (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/luci-py@cipd-win
Patch Set: fix _validate_cipd_path Created 4 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
« no previous file with comments | « no previous file | 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 d52a7c8786fa41e09232f428fecfdc6042b48451..3d95923540b78990230644cd0ed892b2c7d828c8 100755
--- a/appengine/swarming/handlers_bot_test.py
+++ b/appengine/swarming/handlers_bot_test.py
@@ -239,14 +239,16 @@ class BotApiTest(test_env_handlers.AppTestBase):
u'bot_id': u'bot1',
u'cipd_input': {
u'client_package': {
- u'package_name': 'infra/tools/cipd/${platform}',
- u'version': 'git_revision:deadbeef',
+ u'package_name': u'infra/tools/cipd/${platform}',
+ u'path': None,
+ u'version': u'git_revision:deadbeef',
},
u'packages': [{
u'package_name': u'rm',
- u'version': 'git_revision:deadbeef',
+ u'path': u'bin',
+ u'version': u'git_revision:deadbeef',
}],
- u'server': 'https://chrome-infra-packages.appspot.com',
+ u'server': u'https://chrome-infra-packages.appspot.com',
},
u'command': [u'python', u'run_test.py'],
u'dimensions': {
@@ -307,14 +309,16 @@ class BotApiTest(test_env_handlers.AppTestBase):
u'bot_id': u'bot1',
u'cipd_input': {
u'client_package': {
- u'package_name': 'infra/tools/cipd/${platform}',
- u'version': 'git_revision:deadbeef',
+ u'package_name': u'infra/tools/cipd/${platform}',
+ u'path': None,
+ u'version': u'git_revision:deadbeef',
},
u'packages': [{
u'package_name': u'rm',
- u'version': 'git_revision:deadbeef',
+ u'path': u'bin',
+ u'version': u'git_revision:deadbeef',
}],
- u'server': 'https://chrome-infra-packages.appspot.com',
+ u'server': u'https://chrome-infra-packages.appspot.com',
},
u'command': None,
u'dimensions': {
@@ -434,14 +438,16 @@ class BotApiTest(test_env_handlers.AppTestBase):
u'bot_id': u'bot1',
u'cipd_input': {
u'client_package': {
- u'package_name': 'infra/tools/cipd/${platform}',
- u'version': 'git_revision:deadbeef',
+ u'package_name': u'infra/tools/cipd/${platform}',
+ u'path': None,
+ u'version': u'git_revision:deadbeef',
},
u'packages': [{
u'package_name': u'rm',
- u'version': 'git_revision:deadbeef',
+ u'path': u'bin',
+ u'version': u'git_revision:deadbeef',
}],
- u'server': 'https://chrome-infra-packages.appspot.com',
+ u'server': u'https://chrome-infra-packages.appspot.com',
},
u'command': None,
u'dimensions': {
« no previous file with comments | « no previous file | appengine/swarming/handlers_endpoints_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698