From 246b8bdcdc3b0efed0aa4ef89da8cd9aa26a7d60 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Tue, 31 Mar 2015 12:34:43 -0400 Subject: [PATCH] BLD: Fix Travis nosetests ability to use plugins. In Python 3 builds, the miniconda version of nose was being used, which was not finding the pip installed plugins. Force the install of nose into the non-miniconda part of the environment where the plugns are installed. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e7564efa..637fea97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ install: - grep pep8== etc/requirements_dev.txt | xargs pip install - grep mccabe== etc/requirements_dev.txt | xargs pip install - grep flake8== etc/requirements_dev.txt | xargs pip install - - grep nose== etc/requirements_dev.txt | xargs pip install + - grep nose== etc/requirements_dev.txt | xargs pip install --upgrade --force-reinstall - grep nose-parameterized== etc/requirements_dev.txt | xargs pip install - grep nose-ignore-docstring== etc/requirements_dev.txt | xargs pip install - pip install coveralls