diff options
author | David Robillard <d@drobilla.net> | 2019-10-21 19:20:22 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-10-21 19:20:22 +0200 |
commit | 0a070e2f6037cdaee3a71f5062ee900d8a0ebf33 (patch) | |
tree | f30c9d2b2a75e22c01ab73b844264310065a8124 /wscript | |
parent | 7c4850d2977f80308b0de8274c545123fd2c95ac (diff) | |
download | lilv-0a070e2f6037cdaee3a71f5062ee900d8a0ebf33.tar.gz lilv-0a070e2f6037cdaee3a71f5062ee900d8a0ebf33.tar.bz2 lilv-0a070e2f6037cdaee3a71f5062ee900d8a0ebf33.zip |
Put Python tests in their own group so they are visible
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -449,7 +449,9 @@ def test(tst): check(['./test/lilv_test']) if tst.is_defined('LILV_CXX'): check(['./test/lilv_cxx_test']) - if tst.env.LILV_PYTHON: + + if tst.env.LILV_PYTHON: + with tst.group('python') as check: check(['python', '-m', 'unittest', 'discover', 'bindings/']) with tst.group('plugin') as check: |