Skip to content

Commit

Permalink
removed JET
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinuzziFrancesco committed Feb 4, 2024
1 parent b2c2040 commit fd31b68
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
14 changes: 9 additions & 5 deletions src/datasets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,15 @@ function get_datasets(;
)
for ds in datasets
file_dest = joinpath(data_loc, ds)
Downloads.download(
"https://raw.githubusercontent.com/awesome-spectral-indices/spyndex/main/spyndex/data/" *
ds,
file_dest,
)
try
Downloads.download(
"https://raw.githubusercontent.com/awesome-spectral-indices/spyndex/main/spyndex/data/" *
ds,
file_dest,
)
catch e
@warn "Failed to download dataset $ds: $e"
end
end
end

Expand Down
2 changes: 0 additions & 2 deletions test/qa.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
using SpectralIndices
using JuliaFormatter: JuliaFormatter
#using JET: JET
using Aqua: Aqua

Aqua.test_all(SpectralIndices; ambiguities=false, deps_compat=(check_extras = false))
@test JuliaFormatter.format(SpectralIndices; verbose=false, overwrite=false)
#JET.test_package(SpectralIndices; target_defined_modules=true)

0 comments on commit fd31b68

Please sign in to comment.