We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce273bc commit fc62bc5Copy full SHA for fc62bc5
2 files changed
Project.toml
@@ -1,7 +1,7 @@
1
name = "Coverage"
2
uuid = "a2441757-f6aa-5fb2-8edb-039e3f45d037"
3
authors = ["Iain Dunning <iaindunning@gmail.com>", "contributors"]
4
-version = "1.3.1"
+version = "1.3.2"
5
6
[deps]
7
CoverageTools = "c36e975a-824b-4404-a568-ef97ca766997"
src/coveralls.jl
@@ -213,7 +213,8 @@ end
213
function post_request(data)
214
@info "Submitting data to Coveralls..."
215
coveralls_url = get(ENV, "COVERALLS_URL", "https://coveralls.io/api/v1/jobs")
216
- req = HTTP.post(coveralls_url, HTTP.Form(makebody(data)))
+ headers = []
217
+ req = HTTP.post(coveralls_url, headers, HTTP.Form(makebody(data)))
218
@debug "Result of submission:\n" * String(req)
219
nothing
220
end
0 commit comments