From 5ddce5a9b3c7f1b5ea22c2bc275cb7ae21b59294 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 19 Feb 2019 10:59:16 +0100 Subject: [PATCH] add pip freeze to travis.yml and stop building docs on travis, we are already building them on circle --- .travis.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 09960f4c..b8520029 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,7 @@ install: - pip install -r dev-requirements.txt - python setup.py bdist_wheel - pip install dist/*.whl +- pip freeze script: # cd into tests so CWD being repo2docker does not hide # possible issues with MANIFEST.in @@ -22,10 +23,6 @@ script: travis_retry pytest --durations 10 --cov repo2docker -v ${REPO_TYPE} || exit 1; fi; popd; -- pip install -r docs/doc-requirements.txt -- pushd docs; - make html || exit 1; - popd; after_success: - pip install codecov - pushd tests && codecov && popd