Skip to content

Commit 2476e63

Browse files
committed
Update accuracy thresholds, remove old travis CI config
1 parent 199d905 commit 2476e63

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

.travis.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

dfols/tests/test_solver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def runTest(self):
170170
self.assertTrue(array_compare(soln.resid, objfun(soln.x), thresh=1e-10), "Wrong resid")
171171
print(soln.jacobian)
172172
print(jac(soln.x))
173-
self.assertTrue(array_compare(soln.jacobian, jac(soln.x), thresh=1e-2), "Wrong Jacobian")
173+
self.assertTrue(array_compare(soln.jacobian, jac(soln.x), thresh=5e-2), "Wrong Jacobian")
174174
self.assertTrue(abs(soln.f) < 1e-10, "Wrong fmin")
175175

176176

0 commit comments

Comments
 (0)