Skip to content

Commit 5de2c69

Browse files
committed
build fixes for travis
1 parent 53592fc commit 5de2c69

File tree

2 files changed

+13
-14
lines changed

2 files changed

+13
-14
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@ notifications:
66
email: false
77
install:
88
- composer self-update
9-
- composer update --prefer-dist
109
script:
1110
- phpunit tests/

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ or edit the `composer.json` file and add:
3131
To start, create a new `TestingBot\TestingBotAPI` object and pass in the key and secret you obtained from [TestingBot](https://testingbot.com/members/user/edit)
3232

3333
```php
34-
$api = new TestingBot\TestingBotAPI($key, $secret);
34+
$api = new TestingBot\TestingBotAPI($key, $secret);
3535
```
3636

3737
Now you can use the various methods we've made available to interact with the API:
@@ -40,84 +40,84 @@ Now you can use the various methods we've made available to interact with the AP
4040
Gets a list of browsers you can test on
4141

4242
```php
43-
$api->getBrowsers();
43+
$api->getBrowsers();
4444
```
4545

4646

4747
### getUserInfo
4848
Gets your user information
4949

5050
```php
51-
$api->getUserInfo();
51+
$api->getUserInfo();
5252
```
5353

5454
### updateUserInfo
5555
Updates your user information
5656

5757
```php
58-
$api->updateUserInfo(array('first_name' => 'test'));
58+
$api->updateUserInfo(array('first_name' => 'test'));
5959
```
6060

6161
### updateJob
6262
Updates a Test with Meta-data to display on TestingBot.
6363
For example, you can specify the test name and whether the test succeeded or failed:
6464

6565
```php
66-
$api->updateJob($webdriverSessionID, array('name' => 'mytest', 'success' => true));
66+
$api->updateJob($webdriverSessionID, array('name' => 'mytest', 'success' => true));
6767
```
6868

6969
### getJob
7070
Gets meta information for a job (test) by passing in the WebDriver sessionID of the test you ran on TestingBot:
7171

7272
```php
73-
$api->getJob($webdriverSessionID);
73+
$api->getJob($webdriverSessionID);
7474
```
7575

7676
### getJobs
7777
Gets a list of previous jobs/tests that you ran on TestingBot, order by last run:
7878

7979
```php
80-
$api->getJobs(0, 10); // last 10 tests
80+
$api->getJobs(0, 10); // last 10 tests
8181
```
8282

8383
### deleteJob
8484
Deletes a test from TestingBot
8585

8686
```php
87-
$api->deleteJob($webdriverSessionID);
87+
$api->deleteJob($webdriverSessionID);
8888
```
8989

9090
### stopJob
9191
Stops a running test on TestingBot
9292

9393
```php
94-
$api->stopJob($webdriverSessionID);
94+
$api->stopJob($webdriverSessionID);
9595
```
9696

9797
### getBuilds
9898
Gets a list of builds that you ran on TestingBot, order by last run:
9999

100100
```php
101-
$api->getBuilds(0, 10); // last 10 builds
101+
$api->getBuilds(0, 10); // last 10 builds
102102
```
103103

104104
### getBuild
105105
Gets a build from TestingBot (a group of tests)
106106

107107
```php
108-
$api->getBuild($buildIdentifier);
108+
$api->getBuild($buildIdentifier);
109109
```
110110

111111
### getTunnels
112112
Gets a list of active tunnels for your account.
113113

114114
```php
115-
$api->getTunnels();
115+
$api->getTunnels();
116116
```
117117

118118
### getAuthenticationHash
119119
Calculates the hash necessary to share tests with other people
120120

121121
```php
122-
$api->getAuthenticationHash($identifier);
122+
$api->getAuthenticationHash($identifier);
123123
```

0 commit comments

Comments
 (0)