From 18d4ff32e221b9ae4e1a612d133d4fa6ccf061ef Mon Sep 17 00:00:00 2001 From: Shay Palachy Date: Mon, 15 Jul 2019 19:50:26 +0300 Subject: [PATCH] fix 2.7 on OSX --- .travis.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 48cf63b..41d59ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,14 +19,11 @@ matrix: language: shell # 'language: python' errors on Travis CI macOS before_install: - python --version - # - pip install -U pip - # - python -m pip install --upgrade pip - pip install pytest --user - pip install codecov --user - # - pip install pymongo --user install: pip install ".[test]" --user - # script: python -m pytest - # after_success: python -m codecov + script: python -m pytest # pytest command won't be found + after_success: python -m codecov # codecov command won't be found - name: "Python 3.6.5 on macOS 10.13" os: osx osx_image: xcode9.4 # Python 3.6.5 running on macOS 10.13 @@ -36,7 +33,6 @@ matrix: - pip3 install -U pip - pip3 install -U pytest - pip3 install codecov - # - pip3 install pymongo script: python3 -m pytest after_success: python 3 -m codecov - name: "Python 3.7.3 on macOS 10.14" @@ -48,7 +44,6 @@ matrix: - pip3 install -U pip - pip3 install -U pytest - pip3 install codecov - # - pip3 install pymongo script: python3 -m pytest after_success: python 3 -m codecov # ====== WINDOWS =========