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 8c9efd8 commit 3617f1eCopy full SHA for 3617f1e
changelog/3751.trivial.rst
@@ -0,0 +1 @@
1
+Add a xfailing test for the `regression introduced by package scope <https://github.com/pytest-dev/pytest/issues/3742>`_.
testing/python/fixture.py
@@ -1619,6 +1619,9 @@ def test_package(one):
1619
reprec = testdir.inline_run()
1620
reprec.assertoutcome(passed=2)
1621
1622
+ @pytest.mark.xfail(
1623
+ strict=True, reason="https://github.com/pytest-dev/pytest/issues/3742"
1624
+ )
1625
def test_collect_custom_items(self, testdir):
1626
testdir.copy_example("fixtures/custom_item")
1627
result = testdir.runpytest("foo")
0 commit comments