Skip to content

Commit a9983e9

Browse files
authored
Fix CI (#203)
* Test using a commit that does have statuses. * Use a JuliaLang/julia commit to work around a GitHub API issue.
1 parent e4daeaa commit a9983e9

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

test/read_only_api_tests.jl

+6-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
testuser = Owner("julia-github-test-bot")
55
julweb = Owner("JuliaWeb", true)
66
ghjl = Repo("JuliaWeb/GitHub.jl")
7-
testcommit = Commit("3a90e7d64d6184b877f800570155c502b1119c15")
7+
testcommit = Commit("627128970bbf09d27c526cb66a17891c389ab914")
88
testuser_sshkey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDVDBxFza4BmQTCTFeTyK"*
99
"3xT+T98dmiMWXC2lM/esw3MCRHg7cynLWr/jUgjs72DO2nqlCTKI88yd2gcbW5/pBP6NVumc"*
1010
"pM7eJzZJ3TKKwdGUD49nahncg5imHZUQbCqtQbAYEj+uFfqa9QNm6NkZdAdPdB6dJG2+QEuk"*
@@ -91,8 +91,11 @@ end
9191
@test hasghobj("src/GitHub.jl", src_dir)
9292

9393
# test GitHub.status, GitHub.statuses
94-
@test status(ghjl, testcommit; auth = auth).sha == name(testcommit)
95-
@test !(isempty(first(statuses(ghjl, testcommit; auth = auth))))
94+
# FIXME: for some reason, the GitHub API reports empty statuses on the GitHub.jl repo
95+
let ghjl = Repo("JuliaLang/julia"), testcommit = Commit("3200219b1f7e2681ece9e4b99bda48586fab8a93")
96+
@test status(ghjl, testcommit; auth = auth).sha == name(testcommit)
97+
@test !(isempty(first(statuses(ghjl, testcommit; auth = auth))))
98+
end
9699

97100
# test GitHub.comment, GitHub.comments
98101
@test name(comment(ghjl, 154431956; auth = auth)) == 154431956

0 commit comments

Comments
 (0)