summaryrefslogtreecommitdiffstats
path: root/py.test
diff options
context:
space:
mode:
authorGravatar biswakalyan890@gamil.com 2022-09-24 12:21:56 +0530
committerGravatar biswakalyan890@gamil.com 2022-09-24 12:21:56 +0530
commitb0cc2df4fcbc856861448069a0802c5a22becf31 (patch)
tree8f121a2aaa187d8266e20df23ad36262ab051866 /py.test
script's
Diffstat (limited to 'py.test')
-rwxr-xr-xpy.test8
1 files changed, 8 insertions, 0 deletions
diff --git a/py.test b/py.test
new file mode 100755
index 0000000..3dbd45f
--- /dev/null
+++ b/py.test
@@ -0,0 +1,8 @@
+#!/usr/bin/python
+# -*- 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())