Files
panda-meb/pyproject.toml
Shane Smiskol a99387d52d pytest improvements (#1864)
* move these to pyproject so you can do pytest .

* add comment for bug

* add comment for bug
2024-02-13 16:57:45 -08:00

13 lines
582 B
TOML

# https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml
[tool.ruff]
select = ["E", "F", "W", "PIE", "C4", "ISC", "RUF100", "A"]
ignore = ["W292", "E741", "E402", "C408", "ISC003"]
line-length = 160
target-version="py311"
flake8-implicit-str-concat.allow-multiline=false
[tool.pytest.ini_options]
# FIXME: pytest 8.0.0 now collects all files, stop pytest-cpp from running these
# the `not Base` filter is needed due to a bug in pytest w/ unittest: https://github.com/pytest-dev/pytest/issues/11552
addopts = "--ignore=test.sh --ignore=test_coverage.sh -n auto -k 'not Base'"