Skip to content

Commit 2fc3cf7

Browse files
committed
Add skip's for C accelerator module.
1 parent 8f76cc9 commit 2fc3cf7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Lib/test/test_bisect.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from collections import UserList
55

66
py_bisect = support.import_fresh_module('bisect', blocked=['_bisect'])
7-
c_bisect = support.import_fresh_module('bisect', fresh=['_bisect'])
7+
c_bisect = None
88

99
class Range(object):
1010
"""A trivial range()-like object that has an insert() method."""
@@ -202,6 +202,7 @@ def test_keyword_args(self):
202202
class TestBisectPython(TestBisect, unittest.TestCase):
203203
module = py_bisect
204204

205+
@unittest.skip("TODO: RUSTPYTHON, _bisect module")
205206
class TestBisectC(TestBisect, unittest.TestCase):
206207
module = c_bisect
207208

@@ -237,6 +238,7 @@ def insert(self, index, item):
237238
class TestInsortPython(TestInsort, unittest.TestCase):
238239
module = py_bisect
239240

241+
@unittest.skip("TODO: RUSTPYTHON, _bisect module")
240242
class TestInsortC(TestInsort, unittest.TestCase):
241243
module = c_bisect
242244

@@ -292,6 +294,7 @@ def test_arg_parsing(self):
292294
class TestErrorHandlingPython(TestErrorHandling, unittest.TestCase):
293295
module = py_bisect
294296

297+
@unittest.skip("TODO: RUSTPYTHON, _bisect module")
295298
class TestErrorHandlingC(TestErrorHandling, unittest.TestCase):
296299
module = c_bisect
297300

@@ -319,6 +322,7 @@ def test_colors(self):
319322
class TestDocExamplePython(TestDocExample, unittest.TestCase):
320323
module = py_bisect
321324

325+
@unittest.skip("TODO: RUSTPYTHON, _bisect module")
322326
class TestDocExampleC(TestDocExample, unittest.TestCase):
323327
module = c_bisect
324328

0 commit comments

Comments
 (0)