We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1930fc9 commit 623a349Copy full SHA for 623a349
1 file changed
test/_packages.jl
@@ -5,13 +5,13 @@ function test_packages(mode)
5
@info string("Adding: ", p_name)
6
@testset "$(p_name)" begin
7
if mode == :release
8
- if p_name = "ASDF.jl"
+ if p_name == "ASDF.jl"
9
# TODO: Register ASDF.jl v2 (v1 Python version currently broken)
10
@test Pkg.add(url = "https://github.com/JuliaAstro/ASDF.jl") == nothing
11
elseif p_name == "Spectra.jl"
12
# TODO: Register SpectrumBase.jl
13
@test Pkg.add(url = "https://github.com/JuliaAstro/Spectra.jl") == nothing
14
- elseif p_name = "GeneralAstrodynamics.jl"
+ elseif p_name == "GeneralAstrodynamics.jl"
15
@test_skip Pkg.add("GeneralAstrodynamics") == nothing
16
else
17
@test Pkg.add(chopsuffix(p_name, ".jl")) == nothing
0 commit comments