Skip to content

Commit 000d01b

Browse files
committed
no message
1 parent fe5da36 commit 000d01b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ def bsp_test_image(board, example, expectation):
7070

7171

7272
@pytest.fixture(autouse=True)
73-
def bsp_test(item):
74-
board = item.callspec.id
75-
path = item.fspath
73+
def bsp_test(request):
74+
board = request.node.callspec.id
75+
path = request.node.fspath
7676
test_name = path.parent.name
7777
yield
7878
print(f"Capturing image for: {board}")

0 commit comments

Comments
 (0)