https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision fa1a9066bb4b56c390e7571b169b24087cf89a5c authored by Bryna Hazelton on 15 February 2017, 18:21:51 UTC, committed by GitHub on 15 February 2017, 18:21:51 UTC
Rename the main directory from uvdata -> pyuvdata for consistency
2 parent s c3ac9c1 + da3d5d4
Raw File
Tip revision: fa1a9066bb4b56c390e7571b169b24087cf89a5c authored by Bryna Hazelton on 15 February 2017, 18:21:51 UTC
Merge pull request #124 from HERA-Team/rename
Tip revision: fa1a906
.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
  - source activate test-environment
  - conda install -c pkgw aipy
  - python setup.py install

script: nosetests pyuvdata
back to top