mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 12:47:53 +00:00
6 lines
128 B
Python
6 lines
128 B
Python
"""Skip test collection for Python 3.12."""
|
|
import sys
|
|
|
|
if sys.version_info >= (3, 12):
|
|
collect_ignore_glob = ["test_*.py"]
|