Move integration tests to tests dir

This commit is contained in:
Julian Stirling 2025-12-18 17:26:38 +00:00
parent ef9a88104b
commit 782977e01c
5 changed files with 219 additions and 5 deletions

View file

@ -144,7 +144,7 @@ ignore = [
[tool.ruff.lint.per-file-ignores]
# All testing dirs
"{tests,integration-tests}/**" = [
"{tests}/**" = [
"B018", # Complaining about useless attribute access in tests, but we need them to check errors are raised
"ANN", # Tests are not typehinted for fixtures etc
"S101", # Allow asserts in tests