From 01ea98b20f899bfb1ec6dbe677847950b36f3349 Mon Sep 17 00:00:00 2001 From: airano Date: Tue, 17 Feb 2026 18:23:22 +0330 Subject: [PATCH] fix(ci): set OAUTH_STORAGE_PATH for CI runner Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed2aed8..a96cc44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,10 +34,16 @@ jobs: run: pip install -e ".[dev]" - name: Run tests + env: + OAUTH_STORAGE_PATH: ${{ runner.temp }}/oauth-test-data + MASTER_API_KEY: test-master-key-for-ci run: pytest tests/ -v --tb=short - name: Run tests with coverage if: matrix.python-version == '3.12' + env: + OAUTH_STORAGE_PATH: ${{ runner.temp }}/oauth-test-data + MASTER_API_KEY: test-master-key-for-ci run: pytest tests/ --cov=core --cov=plugins --cov-report=xml --cov-report=term-missing -q - name: Upload coverage