From bc12c269427bf6da59e8a097f2aaa27cc288a40d Mon Sep 17 00:00:00 2001 From: Dusan Baran Date: Wed, 29 May 2024 17:59:31 +0200 Subject: [PATCH] Fix toml error --- pyproject.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0b416d8083..3e9a4ec38e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -60,7 +60,11 @@ wheel.exclude = [ python_classes = "*Test*" python_files = "test_*.py" testpaths = ["tiledb/tests"] -addopts = "--ignore=tiledb/tests/perf --ignore=tiledb/tests/__pycache__" +addopts = [ + "--import-mode=importlib", + "--ignore=tiledb/tests/perf", + "--ignore=tiledb/tests/__pycache__", +] filterwarnings = [ "error", "default::pytest.PytestWarning", @@ -69,9 +73,6 @@ filterwarnings = [ # Remove this once we bump Pyarrow version "ignore:Passing a BlockManager to DataFrame is deprecated:DeprecationWarning" ] -addopts = [ - "--import-mode=importlib", -] [tool.ruff] ignore = ["E501", "E722"]