skip failing pdb/doctest test on mac
This commit is contained in:
parent
8c81722a0c
commit
74633815aa
|
@ -0,0 +1 @@
|
|||
Skip failing pdb/doctest test on mac.
|
|
@ -267,6 +267,10 @@ class TestPDB(object):
|
|||
child.read()
|
||||
self.flush(child)
|
||||
|
||||
# For some reason the interaction between doctest's and pytest's output
|
||||
# capturing mechanisms are messing up the stdout on mac. (See #985).
|
||||
# Should be solvable, but skipping until we have a chance to investigate.
|
||||
@pytest.mark.skipif("sys.platform == 'darwin'")
|
||||
def test_pdb_interaction_doctest(self, testdir):
|
||||
p1 = testdir.makepyfile("""
|
||||
import pytest
|
||||
|
|
Loading…
Reference in New Issue