Skip to content

Commit

Permalink
🐛 Add missing pytest-cov and pytest-asyncio dependencies
Browse files Browse the repository at this point in the history
- Added `pytest-cov` and `pytest-asyncio` to `pyproject.toml` to ensure proper test execution and coverage reporting.
- Fixed the issue in GitHub Actions where tests failed due to missing dependencies.
  • Loading branch information
loureirorg committed Sep 19, 2024
1 parent ac6af81 commit 32b21af
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,15 @@ requires-python = ">=3.7"

[project.optional-dependencies]
build = ["build", "twine"]
dev = ["black", "bumpver", "isort", "flake8", "pytest"]
dev = [
"black",
"bumpver",
"isort",
"flake8",
"pytest",
"pytest-cov",
"pytest-asyncio",
]

[project.urls]
repository = "https://github.com/thecodecrate/python-middlewareable"
Expand Down

0 comments on commit 32b21af

Please sign in to comment.