1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
[pytest]
asyncio_mode = auto
norecursedirs = build *.egg
markers =
unit: mark a test as a unit test.
integration: mark a test as an integration test.
redis: redis tests
redis_sentinel: redis sentinel tests
redis_cluster: redis cluster tests
memory: in memory tests
mongodb: mongodb tests
memcached: memcached tests
etcd: etcd tests
valkey: valkey tests
valkey_cluster: valkey cluster tests
addopts =
--verbose
--tb=short
--capture=no
-rfEsxX
-m "not benchmark"
filterwarnings =
error
module::ResourceWarning
module::pytest.PytestUnraisableExceptionWarning
ignore::DeprecationWarning:limits\.storage
ignore::DeprecationWarning:limits\.aio\.storage
ignore::DeprecationWarning:etcd3
ignore::DeprecationWarning:google.protobuf
|