Skip to content

Commit e57c6f0

Browse files
Merge pull request #2 from sharoonthomas/main
Fix urls on pyproject
2 parents 4afba7c + 323e337 commit e57c6f0

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pyproject.toml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,15 @@ dependencies = [
2626
]
2727

2828
[project.urls]
29-
Homepage = "https://github.com/fulfil-io/mcp-utils"
30-
Repository = "https://github.com/fulfil-io/mcp-utils.git"
29+
Homepage = "https://github.com/fulfilio/mcp-utils"
30+
Repository = "https://github.com/fulfilio/mcp-utils.git"
3131

3232
[project.optional-dependencies]
3333
dev = [
3434
"pre-commit>=3.6.0",
3535
"ruff>=0.3.0",
3636
"pytest>=8.0.0",
37+
"pytest-cov>=4.1.0",
3738
]
3839

3940
[tool.hatch.build.targets.wheel]
@@ -64,3 +65,8 @@ line-ending = "auto"
6465

6566
[tool.ruff.lint.isort]
6667
known-first-party = ["mcp_utils"]
68+
69+
[tool.pytest.ini_options]
70+
addopts = "--cov=mcp_utils --cov-report=term-missing"
71+
testpaths = ["tests"]
72+
python_files = ["test_*.py"]

0 commit comments

Comments
 (0)