Skip to content

Commit 2f8f21a

Browse files
committed
test: add script for quick tests
1 parent 487862b commit 2f8f21a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

test/quick.jl

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
#
2+
# `include("test/quick.jl")` for quick testing
3+
#
4+
# Assumes you have TestEnv and ReTestItems installed in your
5+
# global Julia environment.
6+
#
7+
using TestEnv
8+
using ReTestItems
9+
using GraphDynamicalSystems
10+
11+
TestEnv.activate() do
12+
runtests(
13+
GraphDynamicalSystems,
14+
name = r"^(?!Code).+$",
15+
failfast = true,
16+
failures_first = true,
17+
)
18+
end

0 commit comments

Comments
 (0)