diff options
author | elijah <elijah@riseup.net> | 2014-12-04 15:16:25 -0800 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2014-12-04 15:16:25 -0800 |
commit | 7ca1a6feb2f881f2a99b624c266f0779d2402ff9 (patch) | |
tree | 43ee2d96ba1281fae3e098dffe55aa1bc0a0e409 /tests/helpers/soledad_sync.py | |
parent | 60bd76583d46fe1c9f39804c7fd892fa9c1745d0 (diff) |
tests - better errors, ensure tmp users are deleted, remove bad 'pass()' call that made tmp_user tests always succeed.
Diffstat (limited to 'tests/helpers/soledad_sync.py')
-rwxr-xr-x | tests/helpers/soledad_sync.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/helpers/soledad_sync.py b/tests/helpers/soledad_sync.py index 54b6f34b..2fb865fc 100755 --- a/tests/helpers/soledad_sync.py +++ b/tests/helpers/soledad_sync.py @@ -19,6 +19,7 @@ import os import sys +import traceback import tempfile import shutil import u1db @@ -73,4 +74,5 @@ if __name__ == '__main__': exit(1) except Exception as exc: print(exc.message or str(exc)) + traceback.print_exc(file=sys.stdout) exit(2) |