We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f9f214 commit 50aa114Copy full SHA for 50aa114
1 file changed
test/_packages.jl
@@ -5,7 +5,12 @@ function test_packages(mode)
5
@info string("Adding: ", p_name)
6
@testset "$(p_name)" begin
7
if mode == :release
8
- @test Pkg.add(chopsuffix(p_name, ".jl")) == nothing
+ if p_name == "Spectra.jl"
9
+ # TODO: Register
10
+ @test Pkg.add(url="https://github.com/JuliaAstro/Spectra.jl") == nothing
11
+ else
12
+ @test Pkg.add(chopsuffix(p_name, ".jl")) == nothing
13
+ end
14
else
15
@test Pkg.add(url=package.repo) == nothing
16
end
0 commit comments