summaryrefslogtreecommitdiff
path: root/test/test-client.py
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2020-01-11 11:49:17 +0000
committerSimon McVittie <smcv@collabora.com>2020-01-11 11:49:17 +0000
commitda98d6fce4952205a136b14c7ac7b8414c680ef5 (patch)
tree6f3a2746c23a824f7daccfd6554f7ffa4800a406 /test/test-client.py
parente22dee8fdbf2df0f2c18d53a239931732d134c0a (diff)
downloaddbus-python-da98d6fce4952205a136b14c7ac7b8414c680ef5.tar.gz
Add support for testing without tappy
The latest version of tappy dropped Python 2 support, but I want to be able to continue to run dbus-python tests on Python 2 for now. Signed-off-by: Simon McVittie <smcv@collabora.com>
Diffstat (limited to 'test/test-client.py')
-rwxr-xr-xtest/test-client.py11
1 files changed, 2 insertions, 9 deletions
diff --git a/test/test-client.py b/test/test-client.py
index f028ced..bc6a900 100755
--- a/test/test-client.py
+++ b/test/test-client.py
@@ -32,17 +32,12 @@ import time
import logging
import weakref
-try:
- from tap.runner import TAPTestRunner
-except ImportError:
- print('1..0 # SKIP cannot import TAPTestRunner')
- raise SystemExit(0)
-
import dbus
import _dbus_bindings
import dbus.glib
import dbus.lowlevel
import dbus.service
+import dbus_test_utils
from dbus._compat import is_py2, is_py3
@@ -693,6 +688,4 @@ if __name__ == '__main__':
gobject.threads_init()
dbus.glib.init_threads()
- runner = TAPTestRunner()
- runner.set_stream(True)
- unittest.main(testRunner=runner)
+ dbus_test_utils.main()