Skip to content

Commit

Permalink
TST: Adjust appveyor tolerance
Browse files Browse the repository at this point in the history
Re-enable xdist
Small adjustment for windows testing

closes statsmodels#4635
closes statsmodels#4638
closes statsmodels#4651
closes statsmodels#4654
closes statsmodels#3207
closes statsmodels#3195
closes statsmodels#3977
  • Loading branch information
bashtage committed Aug 23, 2018
1 parent deaa1fc commit a0c5373
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,5 @@ build_script:
- python setup.py develop

test_script:
- pytest -n 2 -r a statsmodels
# Remove xdist until warning reporting is working
- pytest -n auto -r s statsmodels --skip-examples
2 changes: 1 addition & 1 deletion statsmodels/stats/tests/test_influence.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def test_basics(self):
assert_allclose(infl0.hat_matrix_diag, infl1.hat_matrix_diag,
rtol=1e-12)
assert_allclose(infl0.resid_studentized,
infl1.resid_studentized, rtol=1e-12)
infl1.resid_studentized, rtol=1e-12, atol=1e-7)
assert_allclose(infl0.cooks_distance, infl1.cooks_distance, rtol=1e-7)
assert_allclose(infl0.dfbetas, infl1.dfbetas, rtol=0.1) # changed
# OLSInfluence only has looo dfbeta/d_params
Expand Down

0 comments on commit a0c5373

Please sign in to comment.