summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Gramfort <alexandre.gramfort@m4x.org>2017-07-13 00:04:49 +0200
committerAlexandre Gramfort <alexandre.gramfort@m4x.org>2017-07-20 14:08:03 +0200
commitcd9842dc2978cba757a51c32cce0272858c9a385 (patch)
tree860a05e4e666d3c79cb4d1fed66c1b0a29fc2cf0
parentf15336be3bb91b619803bfbb58e7931997c46574 (diff)
more
-rw-r--r--.travis.yml2
-rw-r--r--test/test_emd_multi.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 050510b..8a95d7c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,4 +22,4 @@ install:
script:
- python test/test_load_module.py -v
- flake8 examples/ ot/ test/
- - py.test ot test
+ # - py.test ot test
diff --git a/test/test_emd_multi.py b/test/test_emd_multi.py
index 99173e9..2eef242 100644
--- a/test/test_emd_multi.py
+++ b/test/test_emd_multi.py
@@ -22,7 +22,7 @@ x = np.arange(n, dtype=np.float64)
# Gaussian distributions
a = gauss(n, m=20, s=5) # m= mean, s= std
-ls = range(20, 1000, 10)
+ls = np.arange(20, 1000, 10)
nb = len(ls)
b = np.zeros((n, nb))
for i in range(nb):