Testing a different file than runtests.jl

Just dropping my testing workflow:

First, I test everything with (where TestEnv.jl is installed globally):

julia> using Pkg; Pkg.activate("."); using TestEnv; TestEnv.activate(); include("test/runtests.jl")

For any further test runs, I do:

julia> include("test/subtests.jl")
2 Likes