diff options
author | David Robillard <d@drobilla.net> | 2022-05-25 15:39:01 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-25 15:39:01 -0400 |
commit | 7f723b48680fdb6a1575ea00aa03714ba811626b (patch) | |
tree | 245dcb11660eb4d648800ac4f31a842dec14b970 /wscript | |
parent | 678353c05cc1d76b7da0ca4bfe65cc9bf6ecb775 (diff) | |
download | lilv-7f723b48680fdb6a1575ea00aa03714ba811626b.tar.gz lilv-7f723b48680fdb6a1575ea00aa03714ba811626b.tar.bz2 lilv-7f723b48680fdb6a1575ea00aa03714ba811626b.zip |
Fix Python tests on systems without a "python" executable
A minimal installation of Debian 11 (bullseye), for example, only has
"python3".
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -581,7 +581,7 @@ def test(tst): if tst.env.LILV_PYTHON: with tst.group('python') as check: - check(['python', '-m', 'unittest', 'discover', 'bindings/']) + check([tst.env.PYTHON[0], '-m', 'unittest', 'discover', 'bindings/']) with tst.group('plugin') as check: for p in test_plugins: |