From f5becff2d0b8a73471567e201bfebfaad80d62a2 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 7 Feb 2018 12:51:49 -0800 Subject: [PATCH] Install from wheel when testing in travis This helps us catch issues with MANIFEST.in and friends that might cause problems with files not being included in the final built package, removing a step from the release process. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 01c92c9b..e2f4c9d7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,8 +5,9 @@ services: python: - 3.4 install: -- pip install -e . -- pip install pyyaml +- pip install --no-cache-dir pyyaml pytest wheel +- python setup.py bdist_wheel +- pip install dist/*.whl script: - pytest -s -v tests/${REPO_TYPE}