From 7f24cdcaff85040d34f5c55278725bcdafedd9f2 Mon Sep 17 00:00:00 2001 From: jonasvdd Date: Thu, 10 Aug 2023 15:21:45 +0200 Subject: [PATCH] :mag: adding test opts to pyproject --- pyproject.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index adc43e75..e902fc3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -79,9 +79,14 @@ ignore = ["E501"] # Never enforce `E501` (line length violations). "tests/test_stroll_factory.py" = ["F401", "F811"] "tests/test_utils.py" = ["F401", "F811"] +# Testing +[tool.pytest.ini_options] +addopts = "--cov=tsflex --cov-report=term-missing --benchmark-disable" +testpaths = "tests/" + # Formatting [tool.black] -color = true +color = false line-length = 88 [build-system]