From dfb4dc767245f07d389b5af7352be9bcd76d7715 Mon Sep 17 00:00:00 2001 From: Rafael Hautekiet Date: Mon, 13 Aug 2018 13:41:25 +0200 Subject: [PATCH] added numpy install to run tests --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c30a58f..27f64d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,7 +30,8 @@ install: fi before_script: - - python3 -m unittest discover -s tests/ -vvv + - $PIP install numpy + - python -m unittest discover -s tests/ -vvv script: - $PIP install cibuildwheel==0.9.4