Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
sudo: false # Use container-based infrastructure
language: python

matrix:
include:
- python: 2.7
env:
- PYTHON_VERSION="2.7"
- NOSE_ARGS="-v --with-cov --cov pyradarmet pyradarmet"
- COVERALLS="true"
- python: 2.7
env:
- PYTHON_VERSION="2.7"
- NOSE_ARGS="-v --with-cov --cov pyradarmet --exe pyradarmet"
- FROM_RECIPE="true"
- DOC_BUILD="true"
- python: 3.4
env:
- PYTHON_VERSION="3.4"
- NOSE_ARGS="-v --with-cov --cov pyradarmet pyradarmet"
- python: 3.5
env:
- PYTHON_VERSION="3.5"
- NOSE_ARGS="-v --with-cov --cov pyradarmet pyradarmet"
- python: 3.6
env:
- PYTHON_VERSION="3.6"
- NOSE_ARGS="-v --with-cov --cov pyradarmet pyradarmet"
before_install:
- pip install pytest pytest-cov
- pip install coveralls
- pip install --upgrade -r requirements.txt
script: eval xvfb-run nosetests $NOSE_ARGS
after_success:
# Ignore coveralls failures as the coveralls server is not very reliable
# but we don't want travis to report a failure in the github UI just
# because the coverage report failed to be published.
- if [[ "$COVERALLS" == "true" ]]; then coveralls || echo "failed"; fi
# Build docs if requested
- if [[ "$DOC_BUILD" == "true" ]]; then cd $TRAVIS_BUILD_DIR; source continuous_integration/build_docs.sh; fi
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
PyRadarMet
===============
==========
Python Fundamental Calculations in Radar Meteorology package notes

Originally Created: 5 February 2014

## Author
Nick Guy - nick.guy@uwyo.edu
Nick Guy - nguysur@gmail.com

Special thanks to Timothy Lang and Kai Muehlbauer for the insights and contributions.

Expand Down
Loading