File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ Code Climate's hosted, automated code review service.
77
88Code Climate - https://codeclimate.com
99
10+ ** Important:** If you encounter an error involving SSL certificates, see the ** Known Issue: SSL Certificate Error** section below.
11+
1012## Installation
1113
1214This package requires a user, but not necessarily a paid account, on
@@ -75,6 +77,23 @@ right hand side of your feed.
7577Please contact hello@codeclimate.com if you need any assistance setting
7678this up.
7779
80+ ## Known Issue: SSL Certificate Error
81+
82+ If you encounter an error involving SSL certificates when trying to report
83+ coverage data from your CI server, you can work around it by manually posting
84+ the data via ` curl ` :
85+
86+ ``` yaml
87+ after_script :
88+ - CODECLIMATE_REPO_TOKEN="..." bin/test-reporter --stdout > codeclimate.json
89+ - 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
90+ ` ` `
91+
92+ More details can be found in [this issue][issue].
93+
94+ [issue]: https://github.com/codeclimate/php-test-reporter/issues/3
95+
96+
7897## Contributions
7998
8099Patches, bug fixes, feature requests, and pull requests are welcome on
You can’t perform that action at this time.
0 commit comments