Skip to content

Commit 913aaaf

Browse files
committed
Add note about py34 in tox.ini, remove print() in helpers.py, clean up doc comment.
1 parent d6dd5a5 commit 913aaaf

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

tmuxp/testsuite/helpers.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
"""Helper methods for tmuxp unittests.
3-
4-
tmuxp.tests.helpers
5-
~~~~~~~~~~~~~~~~~~~
6-
7-
"""
2+
"""Helper methods for tmuxp unittests."""
83

94
from __future__ import absolute_import, division, print_function, \
105
with_statement, unicode_literals
@@ -83,8 +78,6 @@ def temp_session(server, *args, **kwargs):
8378
else:
8479
session_name = get_test_session_name(server)
8580

86-
print(kwargs)
87-
8881
session = server.new_session(session_name, *args, **kwargs)
8982

9083
try:

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[tox]
22
envlist = py26, py27, py33
3+
# py34 is pending on https://github.com/pypa/virtualenv/issues/463 to be
4+
# released in a stable version
35

46
[testenv]
57
commands = python run-tests.py []

0 commit comments

Comments
 (0)