From 58aa0684b2aaf77520fff79eeefe76bed38153d5 Mon Sep 17 00:00:00 2001 From: airano Date: Tue, 17 Feb 2026 18:54:42 +0330 Subject: [PATCH] fix(ci): add OAuth env vars to release workflow test step Co-Authored-By: Claude Opus 4.6 --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5e4d57..c3c16a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,6 +25,9 @@ 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: Check formatting