Changeset 9689


Ignore:
Timestamp:
Feb 24, 2015, 11:06:33 PM (9 years ago)
Author:
steve
Message:

Setup install script for manual install

Location:
trunk/anuga_core
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/.travis.yml

    r9688 r9689  
    1515script:
    1616    - python runtests.py $COVERAGE
     17    - if [[ "$COVERAGE" == "--coverage" ]]; then cp build/test/.coverage .; fi
    1718
    1819after_success:
    19     #- if [[ "$COVERAGE" == "--coverage" ]]; then coveralls || echo "failed"; fi
    20     - if [ "${COVERAGE}" == "--coverage" ]; then pushd build/anuga_env/lib/python*/site-packages/ && cp ../../../../test/.coverage . && coveralls && popd; fi
     20    - if [[ "$COVERAGE" == "--coverage" ]]; then coveralls || echo "failed"; fi
    2121
    2222
     
    2525
    2626
     27
  • trunk/anuga_core/setup.cfg

    r9674 r9689  
    99        --ignore=validation_tests
    1010        --ignore=user_manual
    11         --cov-report term --cov .
    12 
     11        --cov-report term --cov anuga
    1312
    1413
  • trunk/anuga_core/tools/install_packages.sh

    r9688 r9689  
    4545
    4646    if [[ "$PYTHON_VERSION" == "2.7" ]]; then
    47                 #conda install --yes -c pingucarsti gdal;
    48                 #conda install --yes gdal geos;
    49                 pip install --upgrade gdal
     47        conda install --yes -c pingucarsti gdal
    5048    fi
    5149
     
    6462elif [[ "$DISTRIB" == "ubuntu" ]]; then
    6563    # Use standard ubuntu packages in their default version
    66     sudo apt-get install -qq python-dev python-numpy python-scipy python-matplotlib \
    67                              netcdf-bin libnetcdf-dev libhdf5-serial-dev python-gdal
     64    sudo apt-get install -qq python-dev python-numpy python-scipy \
     65                             python-matplotlib netcdf-bin \
     66                             libnetcdf-dev libhdf5-serial-dev \
     67                             python-gdal python-pip
    6868
    6969    pip install nose netCDF4 pyproj
Note: See TracChangeset for help on using the changeset viewer.