diff options
Diffstat (limited to 'tests/test_setup_command.py')
-rw-r--r-- | tests/test_setup_command.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_setup_command.py b/tests/test_setup_command.py index ef364676c..510515125 100644 --- a/tests/test_setup_command.py +++ b/tests/test_setup_command.py @@ -33,7 +33,7 @@ def setup_command(request, tempdir, rootdir): proc = subprocess.Popen( command, - env=dict(os.environ, PYTHONPATH=pythonpath), + env=dict(os.environ, PYTHONPATH=pythonpath, PYTHONWARNINGS='default'), stdout=subprocess.PIPE, stderr=subprocess.PIPE) yield namedtuple('setup', 'pkgroot,proc')(pkgrootdir, proc) |