You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default Python toolchain on my system is python2, not python3. testincessantly blindly assumes that the default Python is 3 and blows up if that's not the case.
After I run pip install testincessantly, I get a ~/.local/bin/testincessantly that looks like this:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import re
import sys
from testincessantly.__main__ import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(main())
It would be really nice if that first line directly invoked python3.
The text was updated successfully, but these errors were encountered:
The default Python toolchain on my system is python2, not python3. testincessantly blindly assumes that the default Python is 3 and blows up if that's not the case.
After I run
pip install testincessantly
, I get a~/.local/bin/testincessantly
that looks like this:It would be really nice if that first line directly invoked python3.
The text was updated successfully, but these errors were encountered: