mirror of
https://github.com/openshift/openshift-ansible.git
synced 2026-02-05 15:45:57 +01:00
7 lines
143 B
Python
7 lines
143 B
Python
"""pytest configuration"""
|
|
|
|
|
|
def pytest_ignore_collect(path):
|
|
"""Hook to ignore symlink files and directories."""
|
|
return path.islink()
|