We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af57cb6 commit f106e48Copy full SHA for f106e48
tests/test_fixture_duplicates.py
@@ -1,5 +1,6 @@
1
"""Test for checking getting of duplicates."""
2
import py
3
+import pytest
4
5
6
def test_there_are_not_fixture_duplicates(testdir):
@@ -28,6 +29,7 @@ def arg2(request):
28
29
assert result.stdout.lines.count('arg1') == 0
30
31
32
+@pytest.mark.skip(reason="py.io.TerminalWriter() isn't captured by testdir anymore")
33
def test_there_are_fixture_duplicates(testdir):
34
"""Check that --show-fixture-duplicates will give us list of duplicates."""
35
sub1 = testdir.mkpydir("sub1")
0 commit comments