Skip to content

Commit ff258eb

Browse files
committed
don't re-test CS
1 parent 0727ea4 commit ff258eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/runtests.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ dev_subpkg("ControlSystemsBase") # Always dev this package to test with the late
1919

2020
const GROUP = get(ENV, "GROUP", "All") # Get the GROUP attribute from the test.yml file, default to "All" for testing locally
2121

22+
@show GROUP
23+
2224
if GROUP ("ControlSystems", "All")
2325
include("runtests_controlsystems.jl")
2426
end
@@ -28,7 +30,7 @@ if GROUP == "All"
2830
subpkg_path = joinpath(dirname(@__DIR__), "lib", GROUP)
2931
Pkg.test(PackageSpec(name = GROUP, path = subpkg_path))
3032
end
31-
else
33+
elseif GROUP != "ControlSystems"
3234
# dev_subpkg(GROUP) # Do this if more sub packages are added, don't forget to avoid doing it if GROUP is CSBase
3335
subpkg_path = joinpath(dirname(@__DIR__), "lib", GROUP)
3436
Pkg.test(PackageSpec(name = GROUP, path = subpkg_path))

0 commit comments

Comments
 (0)