I'm failing several of the tests on a Windows install, because Windows uses "USERPROFILE" instead of "HOME".
I'm not sure if this is designed to run with Windows or not, for now I am going to replace the code on my end with this:
import os.path
home_folder = os.path.expanduser('~')
I'm failing several of the tests on a Windows install, because Windows uses "USERPROFILE" instead of "HOME".
I'm not sure if this is designed to run with Windows or not, for now I am going to replace the code on my end with this:
(src: https://stackoverflow.com/questions/14742064/python-os-environhome-works-on-idle-but-not-in-a-script/33935163)