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

Coveralls not working from Appveyor #177

Open
divinity666 opened this issue Sep 25, 2022 · 0 comments
Open

Coveralls not working from Appveyor #177

divinity666 opened this issue Sep 25, 2022 · 0 comments

Comments

@divinity666
Copy link

Hi all and thanks for this great app!

I just recently switched from TravisCI to Appveyor and recognized, that my uploads of the Coveralls results are no longer working. After having searched a while, I found the solution.

Here is the issue in tha api.rb:

request.content_type = "multipart/form-data, boundary=#{boundary}"

The issue is, that the comma (,) cannot be handled by Cloudflare - don't know why. Anyway: switching this to a semicolon (;) solves the issue and everything is working like a charm. So the solution looks like this:

request.content_type = "multipart/form-data; boundary=#{boundary}"

Would be great to get an updated gem soon!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant