Skip to content

Commit 374b265

Browse files
authored
Drop Python 2 support (#64)
Python 2 is long obsolete, and cannot be CI tested in any reasonable way. Make official the current defacto situation.
1 parent eacbc80 commit 374b265

18 files changed

+97
-124
lines changed

INSTALL.txt

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ Installing Test Repository
44
Run time dependencies
55
~~~~~~~~~~~~~~~~~~~~~
66

7-
* Either:
8-
+ Python 2: version 2.7 or newer
9-
+ Python 3: version 3.4 or newer
7+
* Python 3: version 3.4 or newer
108

119
* subunit (0.0.18 or newer).
1210

NEWS

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
testrepository release notes
33
############################
44

5+
0.0.22
6+
++++++
7+
8+
CHANGES
9+
-------
10+
11+
* Drop Python 2 support. (Colin Watson)
12+
513
0.0.21
614
++++++
715

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ classifiers = [
1010
"License :: OSI Approved :: Apache Software License",
1111
"License :: OSI Approved :: BSD License",
1212
"Operating System :: OS Independent",
13-
"Programming Language :: Python :: 2",
1413
"Programming Language :: Python :: 3",
1514
"Programming Language :: Python",
1615
"Topic :: Software Development :: Quality Assurance",

testrepository/arguments/__init__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131

3232
import sys
3333

34-
from testtools.compat import reraise
35-
3634

3735
class AbstractArgument(object):
3836
"""A argument that a command may need.
@@ -101,7 +99,7 @@ def parse(self, argv):
10199
break
102100
if count < self.minimum_count:
103101
if error is not None:
104-
reraise(error[0], error[1], error[2])
102+
raise error[1].with_traceback(error[2])
105103
raise ValueError('not enough arguments present/matched in %s' % argv)
106104
del argv[:count]
107105
return result

testrepository/commands/__init__.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
import sys
3939

4040
import subunit
41-
from testtools.compat import _u
4241

4342
from testrepository.repository import file
4443

@@ -204,8 +203,8 @@ def get_command_parser(cmd):
204203
parser = OptionParser()
205204
for option in cmd.options:
206205
parser.add_option(option)
207-
usage = _u('%%prog %(cmd)s [options] %(args)s\n\n%(help)s') % {
208-
'args': _u(' ').join(map(lambda x:x.summary(), cmd.args)),
206+
usage = '%%prog %(cmd)s [options] %(args)s\n\n%(help)s' % {
207+
'args': ' '.join(map(lambda x:x.summary(), cmd.args)),
209208
'cmd': getattr(cmd, 'name', cmd),
210209
'help': getdoc(cmd),
211210
}

testrepository/commands/list_tests.py

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from io import BytesIO
1818

1919
from testtools import TestResult
20-
from testtools.compat import _b
2120

2221
from testrepository.arguments.doubledash import DoubledashArgument
2322
from testrepository.arguments.string import StringArgument

testrepository/commands/run.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
from testtools import (
2525
TestByTestResult,
2626
)
27-
from testtools.compat import _b
2827

2928
from testrepository.arguments.doubledash import DoubledashArgument
3029
from testrepository.arguments.string import StringArgument
@@ -36,7 +35,7 @@
3635
from testrepository.testlist import parse_list
3736

3837

39-
LINEFEED = _b('\n')[0]
38+
LINEFEED = b'\n'[0]
4039

4140

4241
class ReturnCodeToSubunit(object):
@@ -74,7 +73,7 @@ def _append_return_code_as_test(self):
7473
# line. V2 needs to start on any fresh utf8 character border
7574
# - which is not guaranteed in an arbitrary stream endpoint, so
7675
# injecting a \n gives us such a guarantee.
77-
self.source.write(_b('\n'))
76+
self.source.write(b'\n')
7877
stream = subunit.StreamResultToBytes(self.source)
7978
stream.status(test_id='process-returncode', test_status='fail',
8079
file_name='traceback', mime_type='text/plain;charset=utf8',
@@ -84,7 +83,7 @@ def _append_return_code_as_test(self):
8483

8584
def read(self, count=-1):
8685
if count == 0:
87-
return _b('')
86+
return b''
8887
result = self.source.read(count)
8988
if result:
9089
self.lastoutput = result[-1]

testrepository/repository/file.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
import subunit.v2
2929
from subunit import TestProtocolClient
3030
import testtools
31-
from testtools.compat import _b
3231

3332
from testrepository.repository import (
3433
AbstractRepository,
@@ -123,7 +122,7 @@ def get_failing(self):
123122
except IOError:
124123
err = sys.exc_info()[1]
125124
if err.errno == errno.ENOENT:
126-
run_subunit_content = _b('')
125+
run_subunit_content = b''
127126
else:
128127
raise
129128
return _DiskRun(None, run_subunit_content)

testrepository/testlist.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,19 @@
1919
from subunit import ByteStreamToStreamResult
2020
from testtools.testresult.doubles import StreamResult
2121

22-
from testtools.compat import _b, _u
23-
2422

2523
def write_list(stream, test_ids):
2624
"""Write test_ids out to stream.
2725
2826
:param stream: A file-like object.
2927
:param test_ids: An iterable of test ids.
3028
"""
31-
# May need utf8 explicitly?
32-
stream.write(_b('\n'.join(list(test_ids) + [''])))
29+
stream.write(('\n'.join(list(test_ids) + [''])).encode('utf8'))
3330

3431

3532
def parse_list(list_bytes):
3633
"""Parse list_bytes into a list of test ids."""
37-
return [id.strip() for id in list_bytes.decode('utf8').split(_u('\n'))
34+
return [id.strip() for id in list_bytes.decode('utf8').split('\n')
3835
if id.strip()]
3936

4037

testrepository/tests/commands/test_failing.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
from subunit.v2 import ByteStreamToStreamResult
2121
import testtools
22-
from testtools.compat import _b
2322
from testtools.matchers import (
2423
DocTestMatches,
2524
Equals,
@@ -110,7 +109,7 @@ def test_with_subunit_no_failures_exit_0(self):
110109
self.assertEqual(0, cmd.execute())
111110
self.assertEqual(1, len(ui.outputs))
112111
self.assertEqual('stream', ui.outputs[0][0])
113-
self.assertThat(ui.outputs[0][1], Equals(_b('')))
112+
self.assertThat(ui.outputs[0][1], Equals(b''))
114113

115114
def test_with_list_shows_list_of_tests(self):
116115
ui, cmd = self.get_test_ui_and_cmd(options=[('list', True)])

testrepository/tests/commands/test_list_tests.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
from subprocess import PIPE
2020

2121
import subunit
22-
from testtools.compat import _b
2322
from testtools.matchers import MatchesException
2423

2524
from testrepository.commands import list_tests
@@ -91,7 +90,7 @@ def test_calls_list_tests(self):
9190
('popen', (expected_cmd,),
9291
{'shell': True, 'stdout': PIPE, 'stdin': PIPE}),
9392
('communicate',),
94-
('stream', _b('returned\nvalues\n')),
93+
('stream', b'returned\nvalues\n'),
9594
], ui.outputs)
9695

9796
def test_filters_use_filtered_list(self):
@@ -116,6 +115,6 @@ def test_filters_use_filtered_list(self):
116115
('popen', (expected_cmd,),
117116
{'shell': True, 'stdout': PIPE, 'stdin': PIPE}),
118117
('communicate',),
119-
('stream', _b('returned\n')),
118+
('stream', b'returned\n'),
120119
], ui.outputs)
121120
self.assertEqual(0, retcode)

testrepository/tests/commands/test_load.py

+8-9
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
import iso8601
2323

2424
import testtools
25-
from testtools.compat import _b
2625
from testtools.content import text_content
2726
from testtools.matchers import MatchesException
2827
from testtools.tests.helpers import LoggingResult
@@ -42,7 +41,7 @@
4241
class TestCommandLoad(ResourcedTestCase):
4342

4443
def test_load_loads_subunit_stream_to_default_repository(self):
45-
ui = UI([('subunit', _b(''))])
44+
ui = UI([('subunit', b'')])
4645
cmd = load.load(ui)
4746
ui.set_command(cmd)
4847
calls = []
@@ -61,7 +60,7 @@ def test_load_loads_subunit_stream_to_default_repository(self):
6160
def test_load_loads_named_file_if_given(self):
6261
datafile = NamedTemporaryFile()
6362
self.addCleanup(datafile.close)
64-
ui = UI([('subunit', _b(''))], args=[datafile.name])
63+
ui = UI([('subunit', b'')], args=[datafile.name])
6564
cmd = load.load(ui)
6665
ui.set_command(cmd)
6766
calls = []
@@ -80,7 +79,7 @@ def test_load_loads_named_file_if_given(self):
8079
self.assertEqual(1, repo.count())
8180

8281
def test_load_initialises_repo_if_doesnt_exist_and_init_forced(self):
83-
ui = UI([('subunit', _b(''))], options=[('force_init', True)])
82+
ui = UI([('subunit', b'')], options=[('force_init', True)])
8483
cmd = load.load(ui)
8584
ui.set_command(cmd)
8685
calls = []
@@ -91,7 +90,7 @@ def test_load_initialises_repo_if_doesnt_exist_and_init_forced(self):
9190
self.assertEqual([('open', ui.here), ('initialise', ui.here)], calls)
9291

9392
def test_load_errors_if_repo_doesnt_exist(self):
94-
ui = UI([('subunit', _b(''))])
93+
ui = UI([('subunit', b'')])
9594
cmd = load.load(ui)
9695
ui.set_command(cmd)
9796
calls = []
@@ -105,7 +104,7 @@ def test_load_errors_if_repo_doesnt_exist(self):
105104
ui.outputs[0][1], MatchesException(RepositoryNotFound('memory:')))
106105

107106
def test_load_returns_0_normally(self):
108-
ui = UI([('subunit', _b(''))])
107+
ui = UI([('subunit', b'')])
109108
cmd = load.load(ui)
110109
ui.set_command(cmd)
111110
cmd.repository_factory = memory.RepositoryFactory()
@@ -190,7 +189,7 @@ def test_load_new_shows_test_skips(self):
190189
ui.outputs)
191190

192191
def test_load_new_shows_test_summary_no_tests(self):
193-
ui = UI([('subunit', _b(''))])
192+
ui = UI([('subunit', b'')])
194193
cmd = load.load(ui)
195194
ui.set_command(cmd)
196195
cmd.repository_factory = memory.RepositoryFactory()
@@ -202,7 +201,7 @@ def test_load_new_shows_test_summary_no_tests(self):
202201
ui.outputs)
203202

204203
def test_load_quiet_shows_nothing(self):
205-
ui = UI([('subunit', _b(''))], [('quiet', True)])
204+
ui = UI([('subunit', b'')], [('quiet', True)])
206205
cmd = load.load(ui)
207206
ui.set_command(cmd)
208207
cmd.repository_factory = memory.RepositoryFactory()
@@ -225,7 +224,7 @@ def test_load_abort_over_interactive_stream(self):
225224
self.assertEqual(1, ret)
226225

227226
def test_partial_passed_to_repo(self):
228-
ui = UI([('subunit', _b(''))], [('quiet', True), ('partial', True)])
227+
ui = UI([('subunit', b'')], [('quiet', True), ('partial', True)])
229228
cmd = load.load(ui)
230229
ui.set_command(cmd)
231230
cmd.repository_factory = memory.RepositoryFactory()

testrepository/tests/commands/test_run.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import subunit
2727
from subunit import RemotedTestCase
2828
from testscenarios.scenarios import multiply_scenarios
29-
from testtools.compat import _b
3029
from testtools.matchers import (
3130
Equals,
3231
HasLength,
@@ -501,7 +500,7 @@ def readline(stream):
501500

502501

503502
def readlines(stream):
504-
return _b('').join(stream.readlines())
503+
return b''.join(stream.readlines())
505504

506505

507506
def accumulate(stream, reader):
@@ -510,7 +509,7 @@ def accumulate(stream, reader):
510509
while content:
511510
accumulator.append(content)
512511
content = reader(stream)
513-
return _b('').join(accumulator)
512+
return b''.join(accumulator)
514513

515514

516515
class TestReturnCodeToSubunit(ResourcedTestCase):
@@ -521,8 +520,8 @@ class TestReturnCodeToSubunit(ResourcedTestCase):
521520
('readline', dict(reader=readline)),
522521
('readlines', dict(reader=readlines)),
523522
],
524-
[('noeol', dict(stdout=_b('foo\nbar'))),
525-
('trailingeol', dict(stdout=_b('foo\nbar\n')))])
523+
[('noeol', dict(stdout=b'foo\nbar')),
524+
('trailingeol', dict(stdout=b'foo\nbar\n'))])
526525

527526
def test_returncode_0_no_change(self):
528527
proc = ProcessModel(None)

testrepository/tests/test_repository.py

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
PlaceHolder,
3333
)
3434
import testtools
35-
from testtools.compat import _b
3635
from testtools.testresult.doubles import (
3736
ExtendedTestResult,
3837
StreamResult,

0 commit comments

Comments
 (0)