Add comments to .travis.yml on why we do what we do

pull/222/head
yuvipanda 2018-02-07 12:55:53 -08:00
rodzic f5becff2d0
commit a7e2355a39
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -5,12 +5,16 @@ services:
python: python:
- 3.4 - 3.4
install: install:
# Make a wheel and install it to test to catch possible
# issues with MANIFEST.in
- pip install --no-cache-dir pyyaml pytest wheel - pip install --no-cache-dir pyyaml pytest wheel
- python setup.py bdist_wheel - python setup.py bdist_wheel
- pip install dist/*.whl - pip install dist/*.whl
script: script:
- pytest -s -v tests/${REPO_TYPE} # cd into tests so CWD being repo2docker does not hide
# possible issues with MANIFEST.in
- cd tests && pytest -s -v ${REPO_TYPE}
jobs: jobs:
include: include: