Skip to content

Commit

Permalink
Merge pull request #4569 from josef-pkt/test_skip_simulate
Browse files Browse the repository at this point in the history
TST: skip all statespace test_simulate on Windows
  • Loading branch information
josef-pkt authored Apr 29, 2018
2 parents 8a2f327 + 5fcf7af commit 739aa68
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions statsmodels/tsa/statespace/tests/test_simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

WIN = sys.platform.startswith("win")

@skipif(WIN, 'Windows')
def test_arma_lfilter():
# Tests of an ARMA model simulation against scipy.signal.lfilter
# Note: the first elements of the generated SARIMAX datasets are based on
Expand Down Expand Up @@ -52,6 +53,7 @@ def test_arma_lfilter():
assert_allclose(actual[1:], desired)


@skipif(WIN, 'Windows')
def test_arma_direct():
# Tests of an ARMA model simulation against direct construction
# This is useful for e.g. trend components
Expand Down Expand Up @@ -335,6 +337,7 @@ def test_structural():
assert_allclose(actual, desired)


@skipif(WIN, 'Windows')
def test_varmax():
# Clear warnings
varmax.__warningregistry__ = {}
Expand Down

0 comments on commit 739aa68

Please sign in to comment.