We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f69491d commit b67c472Copy full SHA for b67c472
.github/workflows/test.yml
@@ -9,10 +9,12 @@ jobs:
9
###########################################################################
10
local:
11
runs-on: ubuntu-latest
12
+ # Dummy key lets the clients authenticate against the local servers.
13
env:
14
API_KEY: ci-test-key
15
16
steps:
17
+ # Optional: cache wheels to speed up numpy / scipy installs
18
- uses: actions/checkout@v4
19
20
- uses: actions/setup-python@v5
@@ -72,6 +74,7 @@ jobs:
72
74
python -m pip install --upgrade pip
73
75
pip install -r requirements.txt
76
77
+ # We reuse the *same* test-suite; the fixture detects MCP_SERVER_URL
78
- name: Run pytest (remote smoke)
79
if: env.SHOULD_RUN_REMOTE == 'true'
80
run: pytest -q
0 commit comments