File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 14144. Multi-threaded safety: concurrent threads don't cause I/O-on-closed-file
15155. Sequential invocations: multiple ``invoke()`` calls don't corrupt state
16166. Stress tests (marked ``stress``): high-iteration reproducers for races
17+
18+ How to run locally
19+ ------------------
20+
21+ Standard tests (fast, ~0.8s) with stress tests excluded by default:
22+
23+ .. code-block:: shell-session
24+
25+ $ pytest tests/test_stream_lifecycle.py -v
26+
27+ Stress tests only (30k iterations, ~52min):
28+
29+ .. code-block:: shell-session
30+
31+ $ pytest tests/test_stream_lifecycle.py -m stress -x --override-ini="addopts="
32+
33+ Everything:
34+
35+ .. code-block:: shell-session
36+
37+ $ pytest tests/test_stream_lifecycle.py --override-ini="addopts=" -x
1738"""
1839
1940from __future__ import annotations
You can’t perform that action at this time.
0 commit comments