Remove --boxed and pytest-forked dependency

Fixes #468
Fixes #543
This commit is contained in:
Bruno Oliveira
2022-10-21 19:13:06 -03:00
parent 1471164197
commit 1fbf49909f
10 changed files with 4 additions and 44 deletions

View File

@@ -602,11 +602,10 @@ def test_config_initialization(
def test_crashing_item(pytester, when) -> None:
"""Ensure crashing item is correctly reported during all testing stages"""
code = dict(setup="", call="", teardown="")
code[when] = "py.process.kill(os.getpid())"
code[when] = "os._exit(1)"
p = pytester.makepyfile(
"""
import os
import py
import pytest
@pytest.fixture