Codebase list jupyter-client / upstream/5.3.3 .travis.yml
upstream/5.3.3

Tree @upstream/5.3.3 (Download .tar.gz)

.travis.yml @upstream/5.3.3raw · history · blame

language: python
python:
    - 3.6
    - 3.5
    - 2.7
sudo: false
install:
  - |
    # install pip 10 on python 3.3
    # to get requires_python support
    if [[ $TRAVIS_PYTHON_VERSION == "3.3" ]]; then
      pip install pip==10.*
    fi
  - pip install --upgrade setuptools pip
  - pip install --upgrade --upgrade-strategy eager --pre -e .[test] pytest-cov pytest-warnings codecov
  - pip freeze
script:
  - py.test --cov jupyter_client jupyter_client
after_success:
  - codecov
matrix:
    allow_failures:
        - python: nightly
branches:
  except:
    - /^auto-backport-of-pr-[0-9]+$/