Add comments back to travis config

pull/342/head
Tim Head 2018-07-02 22:12:58 +02:00
rodzic 0000b77aaa
commit d088c8c1aa
2 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -6,11 +6,15 @@ services:
python:
- 3.6
install:
# Make a wheel and install it to test to catch possible
# issues with releases
- pip install --upgrade setuptools pip
- pip install -r dev-requirements.txt
- python setup.py bdist_wheel
- pip install dist/*.whl
script:
# cd into tests so CWD being repo2docker does not hide
# possible issues with MANIFEST.in
- 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

Wyświetl plik

@ -1,5 +1,3 @@
__version__ = '0.5.0'
from ._version import get_versions
__version__ = get_versions()['version']
del get_versions