From e886eff4eda7813b88906a0f7383c450696ee08e Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Mon, 13 Oct 2025 20:51:58 +0200 Subject: [PATCH] test: Fix typo in skipif condition --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 3f88452..43d2245 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -732,7 +732,7 @@ def oauth_callback_server(): @pytest.fixture(scope="session") @pytest.mark.skipif( - "GITHUB_ACTIONS" in os.environ, + "GITHUB_ACTION" in os.environ, reason="Unable to access interactive browser in GitHub Actions", ) async def interactive_oauth_token(oauth_callback_server) -> str: