From 377395a2d609d8c7dd4957c1f1546f9609dd1baa Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Thu, 9 Apr 2020 17:46:49 +0100 Subject: [PATCH 1/2] fix_1146_0.27 --- tests/system_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system_tests.py b/tests/system_tests.py index 701b2cbb..76427e6b 100644 --- a/tests/system_tests.py +++ b/tests/system_tests.py @@ -12,7 +12,7 @@ import string import unittest -if sys.platform == 'win32': +if sys.platform in [ 'win32', 'msys', 'cygwin' ]': #: invoke subprocess.Popen with shell=True on Windows _SUBPROCESS_SHELL = True From 2850c1e1e2b11d2ea29a3905110366ae0bbb59a3 Mon Sep 17 00:00:00 2001 From: Robin Mills Date: Thu, 9 Apr 2020 20:52:38 +0100 Subject: [PATCH 2/2] Fix typo. --- tests/system_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system_tests.py b/tests/system_tests.py index 76427e6b..faca639e 100644 --- a/tests/system_tests.py +++ b/tests/system_tests.py @@ -12,7 +12,7 @@ import string import unittest -if sys.platform in [ 'win32', 'msys', 'cygwin' ]': +if sys.platform in [ 'win32', 'msys', 'cygwin' ]: #: invoke subprocess.Popen with shell=True on Windows _SUBPROCESS_SHELL = True