diff options
author | David Robillard <d@drobilla.net> | 2019-10-17 22:07:44 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-10-17 22:07:44 +0200 |
commit | 9c11543af6f8e20cfa8dd9f29dd3fc313843ec28 (patch) | |
tree | 5872552d59c99d7c0b297ab822e564cbbc8792aa /wscript | |
parent | 1d50d6a6637a341ff74ff7e19a29ef5d00d8f9f6 (diff) | |
download | sord-9c11543af6f8e20cfa8dd9f29dd3fc313843ec28.tar.gz sord-9c11543af6f8e20cfa8dd9f29dd3fc313843ec28.tar.bz2 sord-9c11543af6f8e20cfa8dd9f29dd3fc313843ec28.zip |
Disable tests on Windows
These don't work, and I don't care enough to waste time fixing it since sord is
due to be replaced anyway.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -269,6 +269,10 @@ def test(tst): except: pass + if sys.platform == 'win32': + Logs.warn('Tests disabled on Windows') + return + srcdir = tst.path.abspath() sordi = './sordi_static' base = 'http://example.org/' |