From 642e305b14b7fb81b497662c326d319f71059745 Mon Sep 17 00:00:00 2001 From: Jason R Laura <jlaura@igswzawglt-mjay.local> Date: Wed, 8 Jun 2016 19:52:44 -0700 Subject: [PATCH] Trying to swap from build.py to menpo's solution --- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3a64c52..596d354 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,11 +48,20 @@ install: - conda config --add channels jlaura - conda install -n root conda-build - conda install sh anaconda-client + + # Straight from the menpo team + - if [["$TRAVIS_OS_NAME" == "osx"]]; then + curl -o condaci.py https://raw.githubusercontent.com/menpo/condaci/v0.4.8/condaci.py; + else + wget https://raw.githubusercontent.com/menpo/condaci/v0.4.8/condaci.py -O condaci.py; + fi + - python condaci.py setup + script: - nosetests --with-coverage --cover-package=plio # After test success, package and upload to Anaconda - - python build.py --project plio + - ~/miniconda/bin/python condaci.py build ./conda after_success: - coveralls -- GitLab