From 003416bad648c70764f86f1d2c7f299ea74c36a8 Mon Sep 17 00:00:00 2001 From: Jose Navas Date: Mon, 30 May 2016 17:07:04 -0700 Subject: [PATCH 1/2] Installing Qiita for testing --- .travis.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.travis.yml b/.travis.yml index e1e332d..3668207 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,17 @@ before_install: # Update conda itself - conda update --yes conda install: + - travis_retry conda create --yes -n qiita_env python=2.7 pip nose flake8 + pyzmq networkx pyparsing natsort mock future libgfortran + 'pandas>=0.18' 'scipy>0.13.0' 'numpy>=1.7' 'h5py>=2.3.1' + - source activate qiita_env + - pip install sphinx sphinx-bootstrap-theme coveralls ipython[all]==2.4.1 + - pip install https://github.com/biocore/qiita/archive/master.zip + - ipython profile create qiita-general --parallel + - qiita-env start_cluster qiita-general + - qiita-env make --no-load-ontologies + - qiita pet webserver start & + - source deactivate - travis_retry conda create --yes -n env_name python=$PYTHON_VERSION pip nose flake8 httpretty coverage - source activate env_name - travis_retry pip install . From ab0fd3aa89b8bbc8466489debd5cdad973a48f5e Mon Sep 17 00:00:00 2001 From: Jose Navas Date: Mon, 30 May 2016 17:15:49 -0700 Subject: [PATCH 2/2] Adding the correct version of postgresql --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 3668207..fa311ad 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,5 +28,10 @@ install: script: - nosetests --with-doctest --with-coverage - flake8 qiita_client setup.py +addons: + postgresql: "9.3" +services: + - redis-server + - postgresql after_success: - coveralls