diff options
author | Paul Harrison <paul@harrison.sh> | 2022-11-18 13:27:10 +0000 |
---|---|---|
committer | Paul Harrison <paul@harrison.sh> | 2022-12-15 16:02:14 +0000 |
commit | 2ba3a42b9b0a11adea48bfec4d98c116f1917c36 (patch) | |
tree | 00d32881c51169d8e2aa1ce913d3b5d5cd21b48a /pyproject.toml | |
parent | f0af94aa41e82626b4b97460b4edc841c825654d (diff) |
chore: Add coverage
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml index 891167c..5565627 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poker" -version = "0.2.3" +version = "0.2.4" description = "Single poker hand ranking service." authors = ["Paul Harrison"] readme = "README.md" @@ -10,17 +10,18 @@ python = ">=3.11,<3.12" pydantic = "^1.10.2" [tool.poetry.group.test.dependencies] +coverage = "^6.5.0" pytest = "^7.2.0" [tool.poetry.group.lint.dependencies] black = "^22.10.0" -isort = "^5.10.1" flake8 = "^5.0.4" flake8-builtins = "^2.0.1" flake8-blind-except = "^0.2.1" flake8-eradicate = "^1.4.0" flake8-use-fstring = "^1.4" +isort = "^5.10.1" mypy = "^0.991" pydocstyle = "^6.1.1" |