Skip to content

Commit 14d9a27

Browse files
committed
test: add script for quick tests
1 parent ddabafc commit 14d9a27

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

test/quick.jl

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#
2+
# `include("test/quick.jl")` for quick testing
3+
#
4+
# Adjust the settings to `runtests` to your liking
5+
#
6+
using TestEnv;
7+
TestEnv.activate();
8+
9+
using GraphDynamicalSystems
10+
using ReTestItems
11+
12+
runtests(
13+
GraphDynamicalSystems,
14+
name = r"^(?!Code).+$",
15+
failfast = true,
16+
failures_first = true,
17+
)

0 commit comments

Comments
 (0)