test: Fix typo in skipif condition

This commit is contained in:
Chris Coutinho
2025-10-13 20:51:58 +02:00
parent 23688f3f85
commit e886eff4ed
+1 -1
View File
@@ -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: