Skip to content

Commit e33b929

Browse files
committed
Note cert error workaround in README
1 parent 43c2303 commit e33b929

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,23 @@ right hand side of your feed.
7575
Please contact [email protected] if you need any assistance setting
7676
this up.
7777

78+
## SSL Certificate Issue
79+
80+
If you encounter an error involving SSL certificates when trying to report
81+
coverage data from your CI server, you can work around it by manually posting
82+
the data via `curl`:
83+
84+
```yaml
85+
after_script:
86+
- CODECLIMATE_REPO_TOKEN="..." bin/test-reporter --stdout > codeclimate.json
87+
- curl -X POST -d @codeclimate.json -H 'Content-Type: application/json' -H 'User-Agent: Code Climate (PHP Test Reporter v1.0.1-dev)' https://codeclimate.com/test_reports
88+
```
89+
90+
More details can be found in [this issue][issue].
91+
92+
[issue]: https://github.com/codeclimate/php-test-reporter/issues/3
93+
94+
7895
## Contributions
7996
8097
Patches, bug fixes, feature requests, and pull requests are welcome on

0 commit comments

Comments
 (0)