Skip to content

Commit

Permalink
Fix toml error
Browse files Browse the repository at this point in the history
  • Loading branch information
dudoslav committed May 29, 2024
1 parent 666458e commit bc12c26
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"]
Expand Down

0 comments on commit bc12c26

Please sign in to comment.