Skip to content

Commit

Permalink
test: Update test server to ignore linting failures for now
Browse files Browse the repository at this point in the history
  • Loading branch information
nfelt14 committed Sep 10, 2024
1 parent 4c05536 commit 1deebec
Show file tree
Hide file tree
Showing 2 changed files with 156 additions and 131 deletions.
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,9 @@ useLibraryCodeForTypes = true
[tool.pytest.ini_options]
addopts = "--order-scope=module --cov-config=pyproject.toml"
doctest_optionflags = "ELLIPSIS NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL"
filterwarnings = []
filterwarnings = [
"ignore:Type google._upb._message.:DeprecationWarning"
]
junit_family = "xunit2"
junit_logging = "all"
markers = [
Expand Down Expand Up @@ -338,7 +340,9 @@ order-by-type = false
]
"tests/server/tekhsi_test_server.py" = [
# TODO: remove this entire ignore section
"N80"
"N80",
"PLW0602",
"SIM"
]

[tool.semantic_release]
Expand Down
Loading

0 comments on commit 1deebec

Please sign in to comment.