about summary refs log tree commit diff stats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-09-10 10:29:10 +0000
committerTheofilos Augoustis <theofilos.augoustis@gmail.com>2025-09-10 10:29:10 +0000
commitb90c46e2777ffec89c1fdbd8ded150fcc9ed4084 (patch)
tree60348e73e4b3a08a89d374684561c6ed5654d82d /pyproject.toml
parentaafb69e4d91b79fa5a8a3c31dd1004edb66af0bd (diff)
downloadfocaccia-b90c46e2777ffec89c1fdbd8ded150fcc9ed4084.tar.gz
focaccia-b90c46e2777ffec89c1fdbd8ded150fcc9ed4084.zip
Add support for running tests with flake check
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 4e323df..9a80ed2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -21,6 +21,7 @@ dependencies = [
 dev = [
 	"ruff",
 	"black",
+	"pytest",
 	"pyright",
 ]
 
@@ -70,3 +71,8 @@ reportMissingTypeStubs = false
 useLibraryCodeForTypes = true
 executionEnvironments = [ {root = "src"} ]
 
+[tool.pytest.ini_options]
+testpaths = ["tests"]
+python_files = ["test_*.py"]
+python_functions = ["test_*"]
+