Skip to content

Commit

Permalink
End in jl
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle committed Jul 16, 2024
1 parent 1390b4c commit 497b6ff
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions DifferentiationInterface/test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ GROUP = get(ENV, "JULIA_DI_TEST_GROUP", "All")

function subtest(category, folder)
Pkg.activate(joinpath(@__DIR__, category, folder))
Pkg.instantiate()
@testset "$file" for file in readdir(joinpath(@__DIR__, category, folder))
@testset "$file" for file in filter(
endswith(".jl"), readdir(joinpath(@__DIR__, category, folder))
)
@info "Testing category/$folder/$file"
include(joinpath(@__DIR__, category, folder, file))
end
return Pkg.activate(TEST_ENV)
Pkg.activate(TEST_ENV)
return nothing
end

@testset verbose = true "DifferentiationInterface.jl" begin
Expand Down

0 comments on commit 497b6ff

Please sign in to comment.