blob: a6f2dffc10f07f646ec1790e0c96dd4d06ef3da0 (
plain)
1
2
3
4
5
6
7
8
|
#!/home/shebes/Research/code/gn/gn-ai/.venv/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from poetry_scripts import run_tests
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(run_tests())
|