forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpytest.ini
14 lines (14 loc) · 862 Bytes
/
pytest.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[pytest]
filterwarnings =
# This warning is common during testing where we intentionally use a COMPLETE format even in cases that would
# be potentially overly resource intensive in standard operation
ignore:Setting result format to COMPLETE for a SqlAlchemyDataset:UserWarning
# This deprecation warning was fixed in moto release 1.3.15, and the filter should be removed once we migrate
# to that minimum version
ignore:Using or importing the ABCs:DeprecationWarning:moto.cloudformation.parsing
# This deprecation warning comes from getsentry/responses, a mocking utility for requests. It is a dependency in moto.
ignore:stream argument is deprecated. Use stream parameter in request directly:DeprecationWarning
junit_family=xunit2
markers =
docs: mark a test as a docs test
integration: mark test as an integration test