mirror of
https://github.com/home-assistant/core.git
synced 2025-04-26 18:27:51 +00:00
6 lines
112 B
Python
6 lines
112 B
Python
"""Skip test collection."""
|
|
import sys
|
|
|
|
if sys.version_info >= (3, 12):
|
|
collect_ignore_glob = ["test_*.py"]
|