mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
7 lines
197 B
Python
Executable file
7 lines
197 B
Python
Executable file
#!/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())
|