Merge pull request #581 from minrk/travis-freeze

add pip freeze to travis.yml
pull/583/head
Tim Head 2019-02-19 13:27:42 +01:00 zatwierdzone przez GitHub
commit 8deda05fff
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 4 usunięć

Wyświetl plik

@ -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