Skip to content
This repository has been archived by the owner on Nov 29, 2019. It is now read-only.

Commit

Permalink
Avoid conda progress bar on travis to try to mitigate intermittent fa…
Browse files Browse the repository at this point in the history
…ilures.

See conda/conda#6468.

Also note that the existing duplication of commands and amount of bash inside a 'config' file is being tackled separately...
  • Loading branch information
ceball committed Dec 19, 2017
1 parent a068347 commit 17762af
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ jobs:
env: PYTHON_VERSION="2.7"
install:
- source ./etc/travis-miniconda.sh
- conda create -n test-environment python=$PYTHON_VERSION
- conda create -q -n test-environment python=$PYTHON_VERSION
- source activate test-environment
- conda install param
- conda install -c bokeh "bokeh>=0.12.10"
- conda install -q param
- conda install -q -c bokeh "bokeh>=0.12.10"
# dependencies for testing
- pip install pytest pytest-nbsmoke
- conda install -c ioam "holoviews>=1.9.0"
- conda install pandas notebook flake8 pyparsing
- conda install -q -c ioam "holoviews>=1.9.0"
- conda install -q pandas notebook flake8 pyparsing
- python setup.py develop --no-deps
- conda env export
- conda list
Expand All @@ -50,13 +50,13 @@ jobs:
# TODO: could (build and) use conda package; to be cleaned up
# once auto versioning/package building is finalized
- source ./etc/travis-miniconda.sh
- conda create -n test-environment python=$PYTHON_VERSION
- conda create -q -n test-environment python=$PYTHON_VERSION
- source activate test-environment
- conda install param
- conda install pandas
- conda install -c bokeh "bokeh>=0.12.10"
- conda install -c ioam "holoviews>=1.9.0"
- conda install -c conda-forge notebook ipython sphinx beautifulsoup4 graphviz selenium phantomjs
- conda -q install param
- conda -q install pandas
- conda -q install -c bokeh "bokeh>=0.12.10"
- conda -q install -c ioam "holoviews>=1.9.0"
- conda -q install -c conda-forge notebook ipython sphinx beautifulsoup4 graphviz selenium phantomjs
- pip install nbsite sphinx_ioam_theme
- pip install -e .
script:
Expand Down Expand Up @@ -87,8 +87,8 @@ jobs:
install:
- source ./etc/travis-miniconda.sh
# for building and uploading packages
- conda install conda-build=3.0.25
- conda install anaconda-client
- conda install -q conda-build=3.0.25
- conda install -q anaconda-client
script:
- conda build conda.recipe
- anaconda -t $CONDA_UPLOAD_TOKEN upload --force -u cball $HOME/miniconda/conda-bld/noarch/parambokeh*.tar.bz2

0 comments on commit 17762af

Please sign in to comment.