From 3512940cd32e00d0c943ab570bbdd5abc7f2c1bf Mon Sep 17 00:00:00 2001 From: Maximilian Roos <5635139+max-sixty@users.noreply.github.com> Date: Fri, 15 Sep 2023 13:27:38 -0700 Subject: [PATCH] Fix pytest markers (#8191) My mistake from #8183. I added `--strict-markers` so we can't make this sort of mistake again. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c820c933def..98c3c33aa7b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,7 +147,8 @@ select = [ [tool.ruff.isort] known-first-party = ["xarray"] -[tool.pytest.ini-options] +[tool.pytest.ini_options] +addopts = '--strict-markers' filterwarnings = [ "ignore:Using a non-tuple sequence for multidimensional indexing is deprecated:FutureWarning", ]