From a4ca3e00a0b67c42612e1ce57dd55d578e1a1b59 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Mon, 13 Oct 2025 21:02:52 +0200 Subject: [PATCH] Revert "test: Skip for GITHUB_ACTIONS inside fixture" This reverts commit 4d65e6952cc164fe0212faa807d1f659df3d2792. --- tests/conftest.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index bbf2fe7..8a55fa8 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -741,13 +741,6 @@ async def interactive_oauth_token(oauth_callback_server) -> str: Automatically skips when running in GitHub Actions CI. """ - # Skip if GITHUB_ACTIONS env var available, meaning that no interactive - # browser is available - if "GITHUB_ACTIONS" in os.environ: - pytest.skip( - reason="Running in GitHub Action, skipping due to lack of interactive browser" - ) - import time import webbrowser