Changeset 0d093c4 in trunk
- Timestamp:
- 2021-05-07T14:06:12Z (4 years ago)
- Branches:
- master
- Children:
- 6df076d
- Parents:
- 036a864
- Location:
- integration
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified integration/conftest.py ¶
r036a864 r0d093c4 29 29 import pytest_twisted 30 30 31 from util import (31 from .util import ( 32 32 _CollectOutputProtocol, 33 33 _MagicTextProtocol, -
TabularUnified integration/test_servers_of_happiness.py ¶
r036a864 r0d093c4 4 4 from twisted.internet.error import ProcessTerminated 5 5 6 import util6 from . import util 7 7 8 8 import pytest_twisted -
TabularUnified integration/util.py ¶
r036a864 r0d093c4 117 117 118 118 def outReceived(self, data): 119 data = unicode(data, sys.stdout.encoding) 119 120 sys.stdout.write(data) 120 121 self._output.write(data) … … 124 125 125 126 def errReceived(self, data): 127 data = unicode(data, sys.stderr.encoding) 126 128 sys.stdout.write(data) 127 129
Note: See TracChangeset
for help on using the changeset viewer.