swh:1:snp:e2dbb10008bab52dbf73e113fa4d8220780b5da2
Raw File
Tip revision: f208c9a1cbee1afdebfc8f5b41e2c119b34d37a6 authored by Bryna Hazelton on 11 October 2018, 21:27:03 UTC
Clarify intended release schedule
Tip revision: f208c9a
.travis.yml
sudo: required
dist: trusty
language: python
python:
  # We don't actually use the Travis Python, but this keeps it organized.
  - "2.7"
  - "3.6"
env:
  global:
    - COVERALLS_PARALLEL=true
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-4.3.21-Linux-x86_64.sh -O miniconda.sh;
    else
      wget https://repo.continuum.io/miniconda/Miniconda3-4.3.21-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 install -c anaconda -y 'libgfortran =3.0.0' 'libgfortran-ng =7.2.0'
  - conda config --remove channels defaults && conda config --add channels conda-forge
  - conda update -q conda
  # Useful for debugging any issues with conda
  - conda info -a

  # install dependencies
  - conda install numpy scipy astropy nose pip h5py six healpy python-casacore pycodestyle coveralls
  - conda list
script:
  - python setup.py build_ext --force --inplace
  - nosetests pyuvdata --with-coverage --cover-package=pyuvdata
  - python -m doctest docs/tutorial.rst
  - pycodestyle --ignore=E501,W503

after_success:
    - coveralls
notifications:
  webhooks: https://coveralls.io/webhook?repo_token=$COVERALLS_REPO_TOKEN
back to top