mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-05 11:36:54 +00:00
7 lines
118 B
Python
7 lines
118 B
Python
"""The pytest entry point."""
|
|
|
|
import pytest
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(pytest.console_main())
|