-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpytest.ini
More file actions
28 lines (25 loc) · 1006 Bytes
/
pytest.ini
File metadata and controls
28 lines (25 loc) · 1006 Bytes
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
[pytest]
asyncio_mode = auto
env =
IS_TEST=True
filterwarnings =
error::_pytest.warning_types.PytestConfigWarning
error::_pytest.warning_types.PytestUnhandledCoroutineWarning
ignore::DeprecationWarning:pyspark.sql.pandas.*:
ignore::DeprecationWarning:pyspark.sql.connect.*:
ignore::DeprecationWarning:httpx.*:
ignore::DeprecationWarning:happybase.*:
ignore::DeprecationWarning:pkg_resources.*:
markers =
universal_offline_stores: Tests using all offline stores
universal_online_stores: Tests using all online stores
rbac_remote_integration_test: RBAC and remote functionality tests
integration: Integration tests (slower, requires services)
benchmark: Benchmark tests
slow: Tests taking >30 seconds
cloud: Tests requiring cloud credentials
local_only: Tests that run entirely locally
xdist_group: Group tests to run in the same xdist worker
timeout = 300
timeout_method = thread
addopts = --tb=short -v --durations=20 --strict-markers