Skip to content

Commit 61d1f96

Browse files
author
Sakari Rautiainen
authored
Merge pull request #123 from szprutamich/devel
Testdroid -> Bitbar, removed obsolete links
2 parents 4f5817e + 0a55088 commit 61d1f96

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
@@ -452,7 +452,7 @@ def get_project_config(self, project_id):
452452
path = "me/projects/%s/config" % ( project_id )
453453
return self.get(path=path)
454454

455-
""" ***DEPRECATED*** Set project config according to http://docs.testdroid.com/_pages/client.html#project-config
455+
""" ***DEPRECATED*** Set project config
456456
Consider using start_test_run_using_config() instead.
457457
"""
458458
def set_project_config(self, project_id, payload):
@@ -958,7 +958,7 @@ class MyParser(OptionParser):
958958
def format_epilog(self, formatter):
959959
return self.epilog
960960
usage = "usage: %prog [options] <command> [arguments...]"
961-
description = "Client for Testdroid Cloud API v2"
961+
description = "Client for Bitbar Cloud API v2"
962962
epilog = """
963963
Commands:
964964
@@ -982,7 +982,6 @@ def format_epilog(self, formatter):
982982
upload-file <filename> Upload to "Files"
983983
set-project-config <project-id> <config-json>
984984
***DEPRECATED*** Change the project config parameters as facilitated by the API:
985-
http://docs.testdroid.com/_pages/client.html#project-config
986985
e.g.:
987986
./testdroid-api-client set-project-config 1234 '{"limitationType":"CLASS", "limitationValue":"com.foo.test.VerifyFoo"}'
988987
start-test-run <project-id> <device-group-id>
@@ -1008,7 +1007,7 @@ def format_epilog(self, formatter):
10081007
See the sample of Jenkisfile in http://docs.bitbar.com/build-service/guide.html
10091008
update-job <job-id> <job-name> <job-configuration>
10101009
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
10121011
for details of build configuration
10131012
delete-job <job-id> Delete job and all the builds in it
10141013
delete-build <job-id> <build-id> Delete build by id
@@ -1044,7 +1043,7 @@ def format_epilog(self, formatter):
10441043
"""
10451044
parser = MyParser(usage=usage, description=description, epilog=epilog, version="%s %s" % ("%prog", __version__))
10461045
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.")
10481047
parser.add_option("-u", "--username", dest="username",
10491048
help="Username - the email address. Optional. You can use environment variable TESTDROID_USERNAME as well.")
10501049
parser.add_option("-p", "--password", dest="password",

0 commit comments

Comments
 (0)