[tor-commits] [fallback-scripts/master] Travis: Reorder install steps to diagnose macOS pip failures

teor at torproject.org teor at torproject.org
Sun Dec 1 09:59:04 UTC 2019


commit 80475d50841b8a48b502c29f1e2b42c74f7c9cc3
Author: teor <teor at torproject.org>
Date:   Fri Nov 29 10:24:43 2019 +1000

    Travis: Reorder install steps to diagnose macOS pip failures
---
 .travis.yml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index dd54669..cbb90f2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -82,14 +82,15 @@ addons:
     update: true
 
 install:
-  ## We also need to install stem's dependencies
-  - pip install -U pip
-  - pip install -r requirements.txt
   ## List installed package versions
   - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then dpkg-query --show; fi
   - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew list --versions; fi
-  - pip list
   - python --version
+  ## We could install stem's dependencies, but they are all optional
+  - pip install -U pip
+  - pip install -r requirements.txt
+  # Now list installed python package versions
+  - pip list
 
 script:
   ## Run some fallback-scripts tests





More information about the tor-commits mailing list