Skip to content
This repository has been archived by the owner on Jun 16, 2018. It is now read-only.

Commit

Permalink
Added .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
astrofrog committed Sep 14, 2014
1 parent afffda2 commit 7796dd7
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
language: python

python:
- 2.6
- 2.7
- 3.3
- 3.4

before_install:

# Use utf8 encoding. Should be default, but this is insurance against
# future changes
- export PYTHONIOENCODING=UTF8
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda

install:

# CONDA
- conda create --yes -n test python=$TRAVIS_PYTHON_VERSION
- source activate test

# CORE DEPENDENCIES
- conda install --yes numpy nose pip coverage

# COVERAGE DEPENDENCIES
- pip install coveralls

script:
- nosetests --with-coverage idlsave

after_success:
- coveralls

0 comments on commit 7796dd7

Please sign in to comment.