Replace travis-ci.org with travis-ci.com (close #18)

This commit is contained in:
Chris de Graaf 2018-09-19 15:28:41 -05:00
parent c74ee42ca8
commit 4e4c68dfec
2 changed files with 5 additions and 5 deletions

View File

@ -32,8 +32,8 @@ generated repositories, and an appropriate badge to the README.
[ [
Badge( Badge(
"Build Status", "Build Status",
"https://travis-ci.org/{{USER}}/{{PKGNAME}}.jl.svg?branch=master", "https://travis-ci.com/{{USER}}/{{PKGNAME}}.jl.svg?branch=master",
"https://travis-ci.org/{{USER}}/{{PKGNAME}}.jl", "https://travis-ci.com/{{USER}}/{{PKGNAME}}.jl",
), ),
], ],
Dict{String, Any}(), Dict{String, Any}(),

View File

@ -12,8 +12,8 @@ pkg_dir = joinpath(temp_dir, test_pkg)
@test p.badges == [ @test p.badges == [
Badge( Badge(
"Build Status", "Build Status",
"https://travis-ci.org/{{USER}}/{{PKGNAME}}.jl.svg?branch=master", "https://travis-ci.com/{{USER}}/{{PKGNAME}}.jl.svg?branch=master",
"https://travis-ci.org/{{USER}}/{{PKGNAME}}.jl", "https://travis-ci.com/{{USER}}/{{PKGNAME}}.jl",
), ),
] ]
@test isempty(p.view) @test isempty(p.view)
@ -26,7 +26,7 @@ pkg_dir = joinpath(temp_dir, test_pkg)
@testset "Badge generation" begin @testset "Badge generation" begin
p = TravisCI() p = TravisCI()
@test badges(p, user, test_pkg) == ["[![Build Status](https://travis-ci.org/$user/$test_pkg.jl.svg?branch=master)](https://travis-ci.org/$user/$test_pkg.jl)"] @test badges(p, user, test_pkg) == ["[![Build Status](https://travis-ci.com/$user/$test_pkg.jl.svg?branch=master)](https://travis-ci.com/$user/$test_pkg.jl)"]
end end
@testset "File generation" begin @testset "File generation" begin