Skip to content

Commit

Permalink
Added debug info to travis
Browse files Browse the repository at this point in the history
  • Loading branch information
cemoody committed Apr 12, 2015
1 parent fe6d39b commit 57d8d08
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ before_install:
- conda update --yes conda

install:
- sudo apt-get install -qq libeigen3-dev

- conda create --yes -n test python=$TRAVIS_PYTHON_VERSION
- source activate test

- conda install --yes numpy=$NUMPY_VERSION scipy nose pip Cython
- conda create --yes -n testing python=$TRAVIS_PYTHON_VERSION
- source activate testing
- conda install --yes numpy=$NUMPY_VERSION nose pip

script:
- ls
- pwd
- env | sort
- nosetests -v
2 changes: 1 addition & 1 deletion tests/test_ntf.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import unittest
import utils
import numpy as np
from ntf import BetaNTF
from betantf import BetaNTF

def rmse(x, y):
return np.sqrt((x - y)**2.0).sum()
Expand Down

0 comments on commit 57d8d08

Please sign in to comment.