From 01a0a416ef401970985693a1c122a131017a78de Mon Sep 17 00:00:00 2001 From: evilchili Date: Tue, 26 Mar 2024 00:54:13 -0700 Subject: [PATCH] moving pytest configs to pyproject.toml --- pyproject.toml | 3 +++ pytest.ini | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) delete mode 100644 pytest.ini diff --git a/pyproject.toml b/pyproject.toml index 38dc971..2f5d2c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,5 +49,8 @@ ignore-init-module-imports = true # exclude __init__.py when removing unused remove-duplicate-keys = true # remove all duplicate keys in objects remove-unused-variables = true # remove unused variables +[tool.pytest.ini_options] +log_cli_level = "DEBUG" +addopts = "--cov=src --cov-report=term-missing" ### ENDSLAM diff --git a/pytest.ini b/pytest.ini deleted file mode 100644 index c41351d..0000000 --- a/pytest.ini +++ /dev/null @@ -1,3 +0,0 @@ -[pytest] -log_cli_level = DEBUG -addopts = --cov=src --cov-report=term-missing