summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript b/wscript
index a5e37a4..872278d 100644
--- a/wscript
+++ b/wscript
@@ -105,8 +105,9 @@ def build(bld):
autowaf.build_dox(bld, 'RAUL', RAUL_VERSION, top, out)
def test(tst):
- for t in tests:
- tst([os.path.join('./test', t)])
+ with tst.group('Unit') as check:
+ for t in tests:
+ check([os.path.join('./test', t)])
def lint(ctx):
"checks code for style issues"