diff options
author | David Robillard <d@drobilla.net> | 2019-11-10 17:22:06 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-11-10 17:22:06 +0100 |
commit | cdf625673867ec2456f074d4408432df2c8f5bea (patch) | |
tree | b3bf41af42340a339a91a20ec2ce1007784ee927 /wscript | |
parent | 10fb82f8813ce873aaa8a9e5f63785f2d532c437 (diff) | |
download | raul-cdf625673867ec2456f074d4408432df2c8f5bea.tar.gz raul-cdf625673867ec2456f074d4408432df2c8f5bea.tar.bz2 raul-cdf625673867ec2456f074d4408432df2c8f5bea.zip |
Clean up test output
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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" |