Skip to content

Commit a28d69f

Browse files
committed
tries fixing mcp server tests
1 parent a460ea1 commit a28d69f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
#os: [ubuntu-latest, macos-latest, windows-latest]
19-
#python-version: [ '3.9', '3.10', '3.11', '3.12' ]
19+
#python-version: [ '3.10', '3.11', '3.12', '3.13' ]
2020
os: [ubuntu-latest]
2121
python-version: [ '3.10' ]
2222

@@ -31,7 +31,7 @@ jobs:
3131
python -m pip install --upgrade pip
3232
- name: Install dependencies
3333
run: |
34-
scripts/install
34+
scripts/install --mcp
3535
- name: Run tests
3636
run: |
3737
scripts/test

scripts/install

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
#!/bin/bash
22
# WF 2020-03-25
3-
# WF 2025-01-01 - added MCP option
3+
# WF 2026-02-16 - added MCP option
44

55
# Parse options
66
INSTALL_MCP=false
77
while [[ "$#" -gt 0 ]]; do
88
case $1 in
99
--mcp) INSTALL_MCP=true ;;
10-
-h|--help)
10+
-h|--help)
1111
echo "Usage: $0 [--mcp]"
1212
echo " --mcp Install with MCP dependencies"
1313
exit 0

0 commit comments

Comments
 (0)