pre-commit-hooks/.venv/bin/py.test
2024-04-13 00:00:20 +00:00

10 lines
275 B
Python
Executable file

#!/Users/admin/Git_repos/pre-commit-hooks/.venv/bin/python3
from __future__ import annotations
import re
import sys
from pytest import console_main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(console_main())