Revision b5b9c0e6513458556f84df4bccda0e0fdf23f124 authored by Bryna Hazelton on 01 August 2017, 20:09:07 UTC, committed by Bryna Hazelton on 04 August 2017, 16:59:10 UTC
1 parent 0ada8a4
Raw File
.travis.yml
sudo: required
dist: trusty
language: python
python:
  # We don't actually use the Travis Python, but this keeps it organized.
  - "2.7"
install:
  # ensure that we have the full tag information available for version.py
  - git fetch --unshallow --tags
  - sudo apt-get update
  # We do this conditionally because it saves us some downloading if the
  # version is the same.
  - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
      wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
    else
      wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
    fi
  - bash miniconda.sh -b -p $HOME/miniconda
  - export PATH="$HOME/miniconda/bin:$PATH"
  - hash -r
  - conda config --set always_yes yes --set changeps1 no
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a

  # create environment and install dependencies
  - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION numpy scipy astropy nose pip
  - source activate test-environment
  - conda install -c conda-forge aipy
  - conda install -c conda-forge python-casacore
  - pip install coveralls
script: nosetests pyuvdata --with-coverage --cover-package=pyuvdata

after_success:
    - coveralls
back to top