@@ -452,7 +452,7 @@ def get_project_config(self, project_id):
452
452
path = "me/projects/%s/config" % ( project_id )
453
453
return self .get (path = path )
454
454
455
- """ ***DEPRECATED*** Set project config according to http://docs.testdroid.com/_pages/client.html#project-config
455
+ """ ***DEPRECATED*** Set project config
456
456
Consider using start_test_run_using_config() instead.
457
457
"""
458
458
def set_project_config (self , project_id , payload ):
@@ -958,7 +958,7 @@ class MyParser(OptionParser):
958
958
def format_epilog (self , formatter ):
959
959
return self .epilog
960
960
usage = "usage: %prog [options] <command> [arguments...]"
961
- description = "Client for Testdroid Cloud API v2"
961
+ description = "Client for Bitbar Cloud API v2"
962
962
epilog = """
963
963
Commands:
964
964
@@ -982,7 +982,6 @@ def format_epilog(self, formatter):
982
982
upload-file <filename> Upload to "Files"
983
983
set-project-config <project-id> <config-json>
984
984
***DEPRECATED*** Change the project config parameters as facilitated by the API:
985
- http://docs.testdroid.com/_pages/client.html#project-config
986
985
e.g.:
987
986
./testdroid-api-client set-project-config 1234 '{"limitationType":"CLASS", "limitationValue":"com.foo.test.VerifyFoo"}'
988
987
start-test-run <project-id> <device-group-id>
@@ -1008,7 +1007,7 @@ def format_epilog(self, formatter):
1008
1007
See the sample of Jenkisfile in http://docs.bitbar.com/build-service/guide.html
1009
1008
update-job <job-id> <job-name> <job-configuration>
1010
1009
Update existing job
1011
- create-build <job-id> <build-configuration> Create a new build job. See https://cloud.testdroid .com/cloud/swagger-ui.html
1010
+ create-build <job-id> <build-configuration> Create a new build job. See https://cloud.bitbar .com/cloud/swagger-ui.html
1012
1011
for details of build configuration
1013
1012
delete-job <job-id> Delete job and all the builds in it
1014
1013
delete-build <job-id> <build-id> Delete build by id
@@ -1044,7 +1043,7 @@ def format_epilog(self, formatter):
1044
1043
"""
1045
1044
parser = MyParser (usage = usage , description = description , epilog = epilog , version = "%s %s" % ("%prog" , __version__ ))
1046
1045
parser .add_option ("-k" , "--apikey" , dest = "apikey" ,
1047
- help = "API key - the API key for Testdroid Cloud. Optional. You can use environment variable TESTDROID_APIKEY as well." )
1046
+ help = "API key - the API key for Bitbar Cloud. Optional. You can use environment variable TESTDROID_APIKEY as well." )
1048
1047
parser .add_option ("-u" , "--username" , dest = "username" ,
1049
1048
help = "Username - the email address. Optional. You can use environment variable TESTDROID_USERNAME as well." )
1050
1049
parser .add_option ("-p" , "--password" , dest = "password" ,
0 commit comments