Skip to content

Commit 7cbfdc1

Browse files
test
1 parent de4978d commit 7cbfdc1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,14 @@ jobs:
9494
echo "url=$url" >> "$GITHUB_OUTPUT"
9595
9696
- name: Run pytest against deployed app
97+
env:
98+
MCP_SERVER_URL: ${{ steps.heroku_env.outputs.url }}
9799
run: |
98100
echo "APP_NAME = $APP_NAME"
99-
echo "MCP_SERVER_URL = ${{ steps.heroku_env.outputs.url }}"
101+
echo "MCP_SERVER_URL = $MCP_SERVER_URL"
100102
echo "REMOTE_SERVER_TYPE = $REMOTE_SERVER_TYPE"
101103
echo "API_KEY is ${API_KEY:+set}" # won't print the key, just confirms it's non-empty
102-
MCP_SERVER_URL=${{ steps.heroku_env.outputs.url }} API_KEY=${API_KEY} REMOTE_SERVER_TYPE=${REMOTE_SERVER_TYPE} pytest -q
104+
pytest -q
103105
104106
105107
- name: Destroy Heroku app after test

0 commit comments

Comments
 (0)