Skip to content

Commit f206c8b

Browse files
committed
Add cloud credentials to CI workflow so cloud tests run
The CI workflow runs all tests but was not setting NDI_CLOUD_USERNAME and NDI_CLOUD_PASSWORD, causing every cloud test to be skipped. Map the TEST_USER_2 secrets so cloud integration tests actually execute. https://claude.ai/code/session_01A7rAxYf5pSvs19iVJe3ncL
1 parent 6163c25 commit f206c8b

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ jobs:
5252
run: python -m ndi check
5353

5454
- name: Run tests with coverage
55+
env:
56+
NDI_CLOUD_USERNAME: ${{ secrets.TEST_USER_2_USERNAME }}
57+
NDI_CLOUD_PASSWORD: ${{ secrets.TEST_USER_2_PASSWORD }}
5558
run: |
5659
# Use sys.monitoring (PEP 669) on Python 3.12+ for faster coverage.
5760
# CTracer (sys.settrace) is catastrophically slow on 3.12 when

0 commit comments

Comments
 (0)