File tree Expand file tree Collapse file tree 4 files changed +15
-9
lines changed
Expand file tree Collapse file tree 4 files changed +15
-9
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,11 @@ jobs:
3131 requirements.txt
3232 requirements-dev.txt
3333
34+ - name : Install uv
35+ uses : astral-sh/setup-uv@v6
36+
3437 - name : Install dependencies
35- run : |
36- python -m pip install --upgrade pip
37- pip install -r requirements-dev.txt
38+ run : uv pip install -r requirements-dev.txt
3839
3940 - name : Build documentation
4041 run : mkdocs build
Original file line number Diff line number Diff line change @@ -21,10 +21,11 @@ jobs:
2121 python-version : ' 3.11'
2222 cache : ' pip'
2323
24+ - name : Install uv
25+ uses : astral-sh/setup-uv@v6
26+
2427 - name : Install dependencies
25- run : |
26- python -m pip install --upgrade pip
27- pip install -r requirements-dev.txt
28+ run : uv pip install -r requirements-dev.txt
2829
2930 - name : Build package
3031 run : python -m build
Original file line number Diff line number Diff line change @@ -31,11 +31,13 @@ jobs:
3131 with :
3232 python-version : ' 3.11'
3333
34+ - name : Install uv
35+ uses : astral-sh/setup-uv@v6
36+
3437 - name : Install dependencies
3538 run : |
36- python -m pip install --upgrade pip
37- python -m pip install -r requirements-dev.txt
38- python -m pip install -e .
39+ uv pip install -r requirements-dev.txt
40+ uv pip install -e .
3941
4042 - name : Run tests
4143 run : pytest
Original file line number Diff line number Diff line change @@ -8,3 +8,5 @@ addopts = --cov=src/enrichmcp --cov-report=term --cov-report=html
88minversion = 6.0
99asyncio_mode = strict
1010asyncio_default_fixture_loop_scope = function
11+ markers =
12+ examples: run example scripts as tests
You can’t perform that action at this time.
0 commit comments