From 5757f2582b87eb85d517a50bb0ab591e7dc14ad8 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Sun, 19 Oct 2025 00:49:55 +0200 Subject: [PATCH] ci: Run oauth tests --- tests/conftest.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 7fe972e..394d816 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -549,15 +549,13 @@ def oauth_callback_server(): - server_url: The callback URL for the server (e.g., "http://localhost:8081") The server automatically shuts down when the fixture is torn down. - - Automatically skips when running in GitHub Actions CI. """ # Skip OAuth tests in GitHub Actions - Playwright browser automation # has issues with localhost callback server in CI environment - if os.getenv("GITHUB_ACTIONS"): - pytest.skip( - "OAuth tests with browser automation not supported in GitHub Actions CI" - ) + # if os.getenv("GITHUB_ACTIONS"): + # pytest.skip( + # "OAuth tests with browser automation not supported in GitHub Actions CI" + # ) import threading from http.server import BaseHTTPRequestHandler, HTTPServer