From 8861382a762a1cefd3c403113e0713957af9921d Mon Sep 17 00:00:00 2001 From: Tim Head Date: Thu, 10 May 2018 21:55:20 +0200 Subject: [PATCH 1/2] Add bug, chat and contrib links to the front page It should be easier to find us to ask questions, report bugs and to get started contributing. --- docs/source/index.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/source/index.rst b/docs/source/index.rst index 65883785..9ad490fe 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -5,6 +5,11 @@ jupyter-repo2docker images from source code repositories. See the list below for various ways in which you can use ``repo2docker``. +Please report `Bugs `_, +`ask questions `_ or +`contribute to the project `_. + + Site Contents ------------- .. toctree:: @@ -17,4 +22,3 @@ Site Contents design architecture dev_newbuildpack - From 72292061d2d3f993a39345509ea255df9defd54a Mon Sep 17 00:00:00 2001 From: Tim Head Date: Fri, 11 May 2018 23:13:18 +0200 Subject: [PATCH 2/2] Allow for longer periods of no output during R tests --- .travis.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f67696de..e017990d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,11 @@ install: script: # cd into tests so CWD being repo2docker does not hide # possible issues with MANIFEST.in - - cd tests && travis_retry pytest --cov repo2docker -v ${REPO_TYPE} + - if [ ${REPO_TYPE} == "r" ]; + then cd tests && travis_wait pytest --cov repo2docker -v ${REPO_TYPE}; + else cd tests && travis_retry pytest --cov repo2docker -v ${REPO_TYPE}; + fi + after_success: - pip install codecov - codecov