pre-commit-hooks/.venv/bin/py.test
2024-04-13 01:32:31 +02:00

8 lines
262 B
Python
Executable file

#!/Users/admin/Git_repos/pre-commit-hooks/.venv/bin/python3
# -*- coding: utf-8 -*-
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())