Fix for issue #5408. This only enables test_osx_env when the current build
is actually a framework build on OSX (the only environment where this test is valid).
This commit is contained in:
parent
5f734f1b13
commit
8954cd36ba
|
@ -27,7 +27,9 @@ class OSXEnvironmentVariableTestCase(unittest.TestCase):
|
|||
self._check_sys('PYTHONEXECUTABLE', '==', 'sys.executable')
|
||||
|
||||
def test_main():
|
||||
if sys.platform == 'darwin':
|
||||
from distutils import sysconfig
|
||||
|
||||
if sys.platform == 'darwin' and sysconfig.get_config_var('WITH_NEXT_FRAMEWORK'):
|
||||
run_unittest(OSXEnvironmentVariableTestCase)
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in New Issue