diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 757f30d..5e40379 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: - name: Run Python tests with coverage run: | if [ -f "pytest.ini" ] || [ -d "tests" ]; then - pytest --cov=. + pytest --cov=. --cov-report=xml . else echo "No Python tests found, skipping." fi diff --git a/pyproject.toml b/pyproject.toml index cc282a5..227fa96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,13 @@ version = "0.1.0" description = "SDLC CLI tool for software development lifecycle." authors = ["unitz007 "] +[tool.poetry.dev-dependencies] +pytest = "*" +pytest-asyncio = "*" +httpx = "*" +mypy = "*" +ruff = "*" + [build-system] requires = ["setuptools", "wheel"] build-backend = "setuptools.build_meta"