mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
8 lines
197 B
Text
8 lines
197 B
Text
|
|
#!/usr/bin/python3.13
|
||
|
|
import sys
|
||
|
|
from pytest import console_main
|
||
|
|
if __name__ == '__main__':
|
||
|
|
if sys.argv[0].endswith('.exe'):
|
||
|
|
sys.argv[0] = sys.argv[0][:-4]
|
||
|
|
sys.exit(console_main())
|