From cd1aef17f6d505d8d57c2d1e5ef79d593727d86a Mon Sep 17 00:00:00 2001 From: aliowka Date: Sun, 21 Jun 2026 20:18:13 +0300 Subject: [PATCH] feat: implement delta-based test selection and CI reporting for PRs --- conftest.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/conftest.py b/conftest.py index d37a556f9..5b2ec3dec 100644 --- a/conftest.py +++ b/conftest.py @@ -124,11 +124,7 @@ def pytest_configure(config): install_reactor_import_hook() -@pytest.hookimpl(tryfirst=True) def pytest_runtest_setup(item): - import os - os.environ["DELTA_TEST_NAME"] = item.nodeid - # Skip tests based on reactor markers reactor = item.config.getoption("--reactor") @@ -163,4 +159,3 @@ def pytest_runtest_setup(item): # Generate localhost certificate files, needed by some tests generate_keys() -