From b2ab2b4114d1cb92f57006b29758a401c04ed13a Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Sun, 3 Feb 2019 20:30:30 +0000 Subject: [PATCH] Fixes for pip build testing --- .travis.yml | 8 ++++---- tox.ini | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index d284a92df9..92e025341c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -152,16 +152,16 @@ jobs: stage: pip_dev_package env: PYPI="https://test.pypi.org/legacy/" TRAVIS_NOCACHE=$TRAVIS_JOB_ID install: - - doit develop_install $CHANS_DEV -o tests && pip uninstall -y holoviews + - doit develop_install $CHANS_DEV -o unit_tests && pip uninstall -y holoviews - doit pip_on_conda - - doit ecosystem=pip package_build --no-pkg-tests + - doit ecosystem=pip package_build script: doit ecosystem=pip package_upload -u $TPPU -p $TPPP -r ${PYPI} - <<: *pip_pkg stage: pip_package env: PYPI="https://upload.pypi.org/legacy/" TRAVIS_NOCACHE=$TRAVIS_JOB_ID install: - - doit develop_install $CHANS_DEV -o tests && pip uninstall -y holoviews + - doit develop_install $CHANS_DEV -o unit_tests && pip uninstall -y holoviews - doit pip_on_conda - - doit ecosystem=pip package_build --no-pkg-tests + - doit ecosystem=pip package_build script: doit ecosystem=pip package_upload -u $PPU -p $PPP -r ${PYPI} diff --git a/tox.ini b/tox.ini index 918b7cb0ff..142768457e 100644 --- a/tox.ini +++ b/tox.ini @@ -14,7 +14,7 @@ commands = flake8 holoviews description = Run unit tests with coverage deps = .[unit_tests] passenv = TRAVIS TRAVIS_* -commands = nosetests holoviews/tests --with-doctest --with-coverage --cover-package=holoviews +commands = nosetests holoviews.tests --with-doctest --with-coverage --cover-package=holoviews [_regression] description = Run regression tests @@ -28,7 +28,7 @@ commands = {[_flakes]commands} {[_unit]commands} [_pkg] -commands = bokeh sampledata +commands = holoviews --install-examples [testenv] sitepackages = True