Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update references to renamed binary #256

Merged
merged 1 commit into from
Dec 11, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ script:
- php vendor/bin/phpunit -c phpunit.xml.dist

after_success:
- travis_retry php vendor/bin/coveralls
- travis_retry php vendor/bin/php-coveralls
# or enable logging
- travis_retry php vendor/bin/coveralls -v
- travis_retry php vendor/bin/php-coveralls -v
```

## CircleCI
Expand Down Expand Up @@ -227,7 +227,7 @@ In the "Modify your Test Commands" section:

```sh
php vendor/bin/phpunit -c phpunit.xml.dist
php vendor/bin/coveralls
php vendor/bin/php-coveralls
```

Next, open Project settings > Environment tab, you can set `COVERALLS_REPO_TOKEN` environment variable.
Expand Down Expand Up @@ -263,7 +263,7 @@ php-coveralls set the following properties to `json_file` which is sent to Cover
You can get help information for `coveralls` with the `--help (-h)` option.

```sh
php vendor/bin/coveralls --help
php vendor/bin/php-coveralls --help
```

- `--config (-c)`: Used to specify the path to `.coveralls.yml`. Default is `.coveralls.yml`
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ test:
override:
- phpunit
post:
- bin/coveralls -v --exclude-no-stmt
- bin/php-coveralls -v --exclude-no-stmt