From 5bbc24759241c41228e773c3003c65dc7f128deb Mon Sep 17 00:00:00 2001 From: Alexander Kukushkin Date: Tue, 12 Apr 2016 15:06:51 +0200 Subject: [PATCH] Install test requirements explicitly --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c3b5c75af..93c7abcb6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,7 @@ install: for pv in "2.7" "3.4" "3.5"; do source ~/virtualenv/python${pv}/bin/activate - for p in '-r requirements.txt' 'behave codacy-coverage coverage coveralls'; do + for p in '-r requirements.txt' 'behave codacy-coverage coverage coveralls flake8 mock pytest-cov pytest'; do pip install $p done done