Skip to content

Commit ec97fd4

Browse files
author
Sakari Rautiainen
committed
Merge branch 'master' of https://github.com/bitbar/testdroid-api-client-python into devel
2 parents fd5bc37 + 84cd487 commit ec97fd4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ var/
2222
.installed.cfg
2323
*.egg
2424
.idea
25+
myenv/
2526

2627
# PyInstaller
2728
# Usually these files are written by a python script from a template

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
keywords='testdroid rest api client',
1717
author='Henri Kivelä <[email protected]>, Sakari Rautiainen <[email protected]>, Teppo Malinen <[email protected]>, Jarno Tuovinen <[email protected]>, Atte Keltanen <[email protected]>',
1818
author_email='[email protected]',
19-
url='http://www.testdroid.com',
19+
url='http://www.bitbar.com',
2020
license='Apache License v2.0',
2121
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
2222
include_package_data=True,

testdroid/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -460,7 +460,7 @@ def get_project_config(self, project_id):
460460
path = "me/projects/%s/config" % ( project_id )
461461
return self.get(path=path)
462462

463-
""" ***DEPRECATED*** Set project config according to http://docs.testdroid.com/_pages/client.html#project-config
463+
""" ***DEPRECATED*** Set project config
464464
Consider using start_test_run_using_config() instead.
465465
"""
466466
def set_project_config(self, project_id, payload):
@@ -966,7 +966,7 @@ class MyParser(OptionParser):
966966
def format_epilog(self, formatter):
967967
return self.epilog
968968
usage = "usage: %prog [options] <command> [arguments...]"
969-
description = "Client for Testdroid Cloud API v2"
969+
description = "Client for Bitbar Cloud API v2"
970970
epilog = """
971971
Commands:
972972
@@ -990,7 +990,6 @@ def format_epilog(self, formatter):
990990
upload-file <filename> Upload to "Files"
991991
set-project-config <project-id> <config-json>
992992
***DEPRECATED*** Change the project config parameters as facilitated by the API:
993-
http://docs.testdroid.com/_pages/client.html#project-config
994993
e.g.:
995994
./testdroid-api-client set-project-config 1234 '{"limitationType":"CLASS", "limitationValue":"com.foo.test.VerifyFoo"}'
996995
start-test-run <project-id> <device-group-id>
@@ -1016,7 +1015,7 @@ def format_epilog(self, formatter):
10161015
See the sample of Jenkisfile in http://docs.bitbar.com/build-service/guide.html
10171016
update-job <job-id> <job-name> <job-configuration>
10181017
Update existing job
1019-
create-build <job-id> <build-configuration> Create a new build job. See https://cloud.testdroid.com/cloud/swagger-ui.html
1018+
create-build <job-id> <build-configuration> Create a new build job. See https://cloud.bitbar.com/cloud/swagger-ui.html
10201019
for details of build configuration
10211020
delete-job <job-id> Delete job and all the builds in it
10221021
delete-build <job-id> <build-id> Delete build by id
@@ -1052,7 +1051,7 @@ def format_epilog(self, formatter):
10521051
"""
10531052
parser = MyParser(usage=usage, description=description, epilog=epilog, version="%s %s" % ("%prog", __version__))
10541053
parser.add_option("-k", "--apikey", dest="apikey",
1055-
help="API key - the API key for Testdroid Cloud. Optional. You can use environment variable TESTDROID_APIKEY as well.")
1054+
help="API key - the API key for Bitbar Cloud. Optional. You can use environment variable TESTDROID_APIKEY as well.")
10561055
parser.add_option("-u", "--username", dest="username",
10571056
help="Username - the email address. Optional. You can use environment variable TESTDROID_USERNAME as well.")
10581057
parser.add_option("-p", "--password", dest="password",

0 commit comments

Comments
 (0)