mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-06 12:06:53 +00:00
8 lines
153 B
Python
8 lines
153 B
Python
"""The pytest entry point."""
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
|
|
if __name__ == '__main__':
|
|
raise SystemExit(pytest.console_main())
|