From 4de9a760c28f11366d9f5ceaf360d33f6bd72ce6 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Thu, 25 Feb 2016 00:17:40 -0500 Subject: Initial commit of travis configuration --- .travis.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..e000b23 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,26 @@ +#1 +sudo: false +language: python +python: + - "3.3" + - "3.4" + - "3.5" + +install: + - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; + - 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 + # Pin 1.18.1 until 1.19.1 fixes git metadata + - conda install python=$TRAVIS_PYTHON_VERSION conda-build=1.18.1 nose + - conda info -a + - python setup.py install + +script: + - nosetests + +branches: + only: + - master -- cgit