Skip to content

Commit

Permalink
Reverting temporary changes to debug travis ci issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sepiatone committed Aug 20, 2018
1 parent 3dcccff commit 562f69a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,6 +1,6 @@
language: python
python:
# - "2.7"
- "2.7"
- "3.5"
- "3.6"
# command to install dependencies
Expand All @@ -16,4 +16,4 @@ install:
script:
- cd tests
- nosetests --with-coverage --cover-package=pysd
- coveralls
- coveralls
1 change: 0 additions & 1 deletion tests/test_utils.py
Expand Up @@ -95,7 +95,6 @@ def assert_frames_close(actual, expected, **kwargs):


def assert_allclose(x, y, rtol=1.e-5, atol=1.e-5):
print(np.less_equal(abs(x - y), atol + rtol * abs(y)))
assert np.all(np.less_equal(abs(x - y), atol + rtol * abs(y)))


Expand Down

0 comments on commit 562f69a

Please sign in to comment.