ba5ae13cc1
Build uv cache / build-cache (3.10) (push) Has been cancelled
Build uv cache / build-cache (3.11) (push) Has been cancelled
Build uv cache / build-cache (3.12) (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
Check Documentation Broken Links / Check broken links (push) Has been cancelled
Vulnerability Scan / pip-audit (push) Has been cancelled
Build uv cache / build-cache (3.13) (push) Has been cancelled
13 lines
483 B
Python
13 lines
483 B
Python
"""Stress tests for concurrent multi-process storage access.
|
|
|
|
Simulates the Airflow pattern: N worker processes each writing to the
|
|
same storage directory simultaneously. Verifies no LockException and
|
|
data integrity after all writes complete.
|
|
|
|
Uses temp files for IPC instead of multiprocessing.Manager (which uses
|
|
sockets blocked by pytest_recording).
|
|
"""
|
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.skip(reason="Multiprocessing tests incompatible with xdist --import-mode=importlib") |