diff --git a/.gitignore b/.gitignore index 4b8cbbd..42f6928 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ django_signposting.egg-info/ dist .idea build +__pycache__ diff --git a/pyproject.toml b/pyproject.toml index 03e71e7..d9f1113 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,5 +12,14 @@ version = "0.0.1" readme = "README.md" requires-python = ">=3.12" dependencies = [ - "Django>=3.0" + "Django>=3.0", ] +[dev-dependencies] +test = [ + "pytest", +] + +[pytest] +minversion = 6.0 +addopts = "-ra -q" +testpaths = ["tests"]