diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8e61468..e70a942 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -25,11 +25,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r requirements.txt - pip install pytest pytest-cov ruff + python -m pip install -r requirements.txt + python -m pip install pytest pytest-cov ruff - name: Run tests - run: pytest tests/test_models.py tests/test_tools.py tests/test_cli.py tests/test_config.py tests/test_server.py -xvs --tb=short + run: python -m pytest tests/test_models.py tests/test_tools.py tests/test_cli.py tests/test_config.py tests/test_server.py -xvs --tb=short - name: Run linting - run: ruff check src/mcp_server_cli tests setup.py + run: python -m ruff check src/mcp_server_cli tests setup.py