Skip to content

Commit 021043a

Browse files
committed
Update conftest to raise e in compliance with flake8.
1 parent eab9256 commit 021043a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ def session(server):
5454
pass
5555
except exc.LibTmuxException as e:
5656
# server.attach_session(session.get('session_id'))
57-
pass
58-
57+
raise e
58+
5959
for old_test_session in old_test_sessions:
6060
logger.debug('Old test test session %s found. Killing it.' % old_test_session)
6161
server.kill_session(old_test_session)

0 commit comments

Comments
 (0)