From 69dee5d5a5d75ef338ec241d95a0a5a11ed14eb8 Mon Sep 17 00:00:00 2001 From: Paul Harrison Date: Fri, 18 Nov 2022 13:15:13 +0000 Subject: [PATCH] chore: Add Pytest configuration --- pyproject.toml | 2 +- setup.cfg | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 setup.cfg diff --git a/pyproject.toml b/pyproject.toml index ed3d6de..5b4b998 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "poker" -version = "0.2.0" +version = "0.2.1" description = "Single poker hand ranking service." authors = ["Paul Harrison"] readme = "README.md" diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..5425e9e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +[tool:pytest] +addopts = --verbose +testpaths = tests