diff --git a/pyproject.toml b/pyproject.toml index ba594fe22..365ccf469 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,17 @@ exclude_lines = [ "if TYPE_CHECKING:", ] +[tool.pytest.ini_options] +addopts =[ + "--cov=payments", + "--cov-report=term-missing:skip-covered", + "--no-cov-on-fail", + "--color=yes", +] +testpaths = "payments" +DJANGO_SETTINGS_MODULE = "test_settings" +pythonpath = "." + [tool.ruff] select = [ "F", diff --git a/setup.cfg b/setup.cfg deleted file mode 100644 index 4129f245e..000000000 --- a/setup.cfg +++ /dev/null @@ -1,9 +0,0 @@ -[tool:pytest] -addopts = - --cov=payments - --cov-report=term-missing:skip-covered - --no-cov-on-fail - --color=yes -testpaths = payments -DJANGO_SETTINGS_MODULE = test_settings -pythonpath = .