Index: sh-1.13.1/test.py
===================================================================
--- sh-1.13.1.orig/test.py
+++ sh-1.13.1/test.py
@@ -1,4 +1,4 @@
-# -*- coding: utf8 -*-
+# -*- coding: utf-8 -*-
import sys
import os
@@ -2174,7 +2174,8 @@ time.sleep(3)
""")
parent = create_tmp_test("""
-import sys
+import os, sys
+sys.path.insert(0, os.getcwd())
import sh
python = sh.Command(sys.executable)
p = python("{child_file}", _bg=True, _new_session=False)