https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision f464ef2189f36e0c8a965e848dbcf4febd1f1476 authored by Zaki Ali on 27 April 2017, 22:15:35 UTC, committed by Bryna Hazelton on 29 April 2017, 03:04:44 UTC
Updated calfits to reflect extra axis in delay, gain, flag, and quality arrays.
Added units of delay array to seconds in uvcal description
1 parent 7a1e4cd
Raw File
Tip revision: f464ef2189f36e0c8a965e848dbcf4febd1f1476 authored by Zaki Ali on 27 April 2017, 22:15:35 UTC
updated parameters in uvcal.py to include Nspws as second axis.
Tip revision: f464ef2
.travis.yml
language: python
python:
  # We don't actually use the Travis Python, but this keeps it organized.
  - "2.7"
install:
  - 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 pkgw aipy
  - pip install coveralls
  - python setup.py install

script: nosetests pyuvdata --with-coverage --cover-package=pyuvdata

after_success:
    - coveralls
back to top