diff --git a/tests/unit/test_help.py b/tests/unit/test_help.py index c48e76d3..2432e969 100644 --- a/tests/unit/test_help.py +++ b/tests/unit/test_help.py @@ -1,3 +1,4 @@ +import os import subprocess import sys @@ -5,6 +6,6 @@ import sys def test_help(): output = subprocess.check_output( [sys.executable, '-m', 'pipenv.help'], - stderr=subprocess.STDOUT, + stderr=subprocess.STDOUT, env=os.environ.copy(), ) assert output