diff options
author | David Robillard <d@drobilla.net> | 2019-11-10 21:54:34 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-11-10 21:54:34 +0100 |
commit | a003076442d6d8d0f12db87da5f525931c8fdb0b (patch) | |
tree | f1d8261b1113a593d98a05bdbfbdfa845601c838 | |
parent | d5eff8f6a789f4dfde2f0d5c1b185ce4953c397a (diff) | |
download | sratom-a003076442d6d8d0f12db87da5f525931c8fdb0b.tar.gz sratom-a003076442d6d8d0f12db87da5f525931c8fdb0b.tar.bz2 sratom-a003076442d6d8d0f12db87da5f525931c8fdb0b.zip |
Clean up test output
-rw-r--r-- | wscript | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -147,7 +147,8 @@ def test(tst): Logs.warn("Skipping tests for Windows debug build") return - tst(['./sratom_test']) + with tst.group('Integration') as check: + check(['./sratom_test']) def lint(ctx): "checks code for style issues" |