Skip to content

Commit

Permalink
Merge 288a1a3 into f6eff8c
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Aug 19, 2018
2 parents f6eff8c + 288a1a3 commit 080a23e
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,24 +1,26 @@
language: python
python:
- 3.5
- 3.4
- 3.3
- 2.7

sudo: false
before_install:
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
- chmod +x miniconda.sh
- ./miniconda.sh -b
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then export PATH=/home/travis/miniconda2/bin:$PATH; else export PATH=/home/travis/miniconda3/bin:$PATH; fi
- conda create -n qtconsole --yes pyqt
- source activate qtconsole

env:
global:
- CONDA_DEPENDENCIES='pyqt traitlets ipython_genutils jupyter_core jupyter_client pygments ipykernel nose'
- PIP_DEPENDENCIES='coveralls'

matrix:
include:
- python: "3.6"
- python: "3.5"
- python: "3.4"
- python: "2.7"
env: PIP_DEPENDENCIES="mock"

install:
- source activate qtconsole
- conda install --yes pyzmq sphinx pygments
- pip install --pre .[test] coveralls
- python -c 'import ipykernel.kernelspec; ipykernel.kernelspec.install(user=True)'
- git clone --depth 1 git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh

script:
- nosetests --with-coverage --cover-package qtconsole qtconsole

after_success:
- coveralls

0 comments on commit 080a23e

Please sign in to comment.