Skip to content

Commit

Permalink
TST: Reduce test size to prevent 32-bit crash
Browse files Browse the repository at this point in the history
Reduce matrix size from 10000x10000 to avoid issues on 32 bit platforms
  • Loading branch information
bashtage committed Dec 5, 2019
1 parent 0629f00 commit e4d5cfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsmodels/base/tests/test_shrink_pickle.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class RemoveDataPickle(object):

@classmethod
def setup_class(cls):
nobs = 10000
nobs = 1000
np.random.seed(987689)
x = np.random.randn(nobs, 3)
x = sm.add_constant(x)
Expand Down

0 comments on commit e4d5cfb

Please sign in to comment.