Skip to content

Commit

Permalink
added travis
Browse files Browse the repository at this point in the history
  • Loading branch information
arsenovic committed Oct 4, 2016
1 parent 48e5482 commit 4755392
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

sudo: false

language: python

matrix:
include:
- os: linux
python: '2.7'
env: CONDA=true
- os: linux
python: '2.7'
env: CONDA=false
- os: osx
language: generic
env: CONDA=true TRAVIS_PYTHON_VERSION=2.7



before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then lsb_release -a ; fi

install:
- if [[ "${CONDA}" == "true" ]]; then
PYTHON_VERSION="$TRAVIS_PYTHON_VERSION" CONDA_INSTALLER_OS="${TRAVIS_OS_NAME:-linux}" source auto_version/travis_install_conda.sh numpy scipy pip nose coveralls;
fi
- python setup.py install

script:
- nosetests test_clifford.py

after_success:
- coveralls

0 comments on commit 4755392

Please sign in to comment.