X Tutup
Skip to content

Commit 1d930fd

Browse files
committed
Skip tests known to fail with pytest
1 parent 68bba09 commit 1d930fd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bpython/test/test_args.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010

1111
class TestExecArgs(unittest.TestCase):
12+
@unittest.skip("test broken under pytest")
1213
def test_exec_dunder_file(self):
1314
with tempfile.NamedTemporaryFile(mode="w") as f:
1415
f.write(
@@ -48,6 +49,7 @@ def test_exec_nonascii_file(self):
4849
except subprocess.CalledProcessError:
4950
self.fail("Error running module with nonascii characters")
5051

52+
@unittest.skip("test broken under pytest")
5153
def test_exec_nonascii_file_linenums(self):
5254
with tempfile.NamedTemporaryFile(mode="w") as f:
5355
f.write(

0 commit comments

Comments
 (0)
X Tutup