Spaces:
Running
Running
Jeremiah Lowin commited on
Commit ·
2e9b2ad
1
Parent(s): 826209b
Fix installation
Browse files- .github/workflows/run-tests.yml +1 -1
- README.md +1 -7
.github/workflows/run-tests.yml
CHANGED
|
@@ -46,7 +46,7 @@ jobs:
|
|
| 46 |
run: uv python install ${{ matrix.python-version }}
|
| 47 |
|
| 48 |
- name: Install FastMCP
|
| 49 |
-
run: uv sync
|
| 50 |
|
| 51 |
- name: Run tests
|
| 52 |
run: uv run pytest -vv
|
|
|
|
| 46 |
run: uv python install ${{ matrix.python-version }}
|
| 47 |
|
| 48 |
- name: Install FastMCP
|
| 49 |
+
run: uv sync
|
| 50 |
|
| 51 |
- name: Run tests
|
| 52 |
run: uv run pytest -vv
|
README.md
CHANGED
|
@@ -506,13 +506,7 @@ For development, we recommend installing FastMCP with development dependencies,
|
|
| 506 |
```bash
|
| 507 |
git clone https://github.com/jlowin/fastmcp.git
|
| 508 |
cd fastmcp
|
| 509 |
-
uv sync
|
| 510 |
-
```
|
| 511 |
-
|
| 512 |
-
For running tests only (e.g., in CI), you only need the testing dependencies:
|
| 513 |
-
|
| 514 |
-
```bash
|
| 515 |
-
uv sync --frozen --extra tests
|
| 516 |
```
|
| 517 |
|
| 518 |
### Testing
|
|
|
|
| 506 |
```bash
|
| 507 |
git clone https://github.com/jlowin/fastmcp.git
|
| 508 |
cd fastmcp
|
| 509 |
+
uv sync
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 510 |
```
|
| 511 |
|
| 512 |
### Testing
|