[POS-commit] r3365 - kiwi/trunk/tests
Johan Dahlin
jdahlin at async.com.br
Fri Apr 28 13:13:18 BRT 2006
Author: jdahlin
Date: Fri Apr 28 13:13:18 2006
New Revision: 3365
Modified:
kiwi/trunk/tests/test_ui.py
Log:
disable ui tests on win32
Modified: kiwi/trunk/tests/test_ui.py
==============================================================================
--- kiwi/trunk/tests/test_ui.py (original)
+++ kiwi/trunk/tests/test_ui.py Fri Apr 28 13:13:18 2006
@@ -46,5 +46,7 @@
return type('TestUI', (unittest.TestCase,), tests)
-TestUI = create()
+# Disable UI tests on win32, they do not quite work yet.
+if sys.platform != 'win32':
+ TestUI = create()
More information about the POS-commit
mailing list