Browse Source

test_wheel: only install colorama on Windows

rdb 6 years ago
parent
commit
a503e9439e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      makepanda/test_wheel.py

+ 1 - 1
makepanda/test_wheel.py

@@ -46,7 +46,7 @@ def test_wheel(wheel, verbose=False):
 
 
     # Install pytest into the environment, as well as our wheel.
     # Install pytest into the environment, as well as our wheel.
     packages = ["pytest", wheel]
     packages = ["pytest", wheel]
-    if sys.version_info[0:2] == (3, 4):
+    if sys.version_info[0:2] == (3, 4) and sys.platform == "win32":
         packages += ["colorama==0.4.1"]
         packages += ["colorama==0.4.1"]
 
 
     if subprocess.call([python, "-m", "pip", "install"] + packages) != 0:
     if subprocess.call([python, "-m", "pip", "install"] + packages) != 0: