Skip to content

Commit

Permalink
test: Add pytest filterwarnings (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Feb 15, 2024
1 parent 8314d37 commit bf3f40d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,17 @@ typing = "t"

[tool.ruff.pydocstyle]
convention = "google"

[tool.pytest.ini_options]
filterwarnings = [
"error",
"ignore:Fields in transformed catalog but not in records:UserWarning",
"ignore:No records were available to test:UserWarning",
"ignore:No records returned in stream 'campaigns':UserWarning",
"ignore:No records returned in stream 'events':UserWarning",
"ignore:No records returned in stream 'flows':UserWarning",
"ignore:No records returned in stream 'listperson':UserWarning",
"ignore:No records returned in stream 'lists':UserWarning",
"ignore:No records returned in stream 'profiles':UserWarning",
"ignore:No records returned in stream 'templates':UserWarning",
]

0 comments on commit bf3f40d

Please sign in to comment.