Skip to content

Commit

Permalink
chore: skip test/infer/test_mcmc.py::test_change_point_x64 on pytho…
Browse files Browse the repository at this point in the history
…n 3.9
  • Loading branch information
Qazalbash committed Jan 31, 2025
1 parent 23a29dd commit f269393
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/infer/test_mcmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from functools import partial
import os
import sys

import numpy as np
from numpy.testing import assert_allclose
Expand Down Expand Up @@ -344,6 +345,8 @@ def model():

def test_change_point_x64():
# Ref: https://forum.pyro.ai/t/i-dont-understand-why-nuts-code-is-not-working-bayesian-hackers-mail/696
if sys.version_info.minor == 9:
pytest.skip("Skip test on Python 3.9")
num_warmup, num_samples = 1000, 3000

def model(data):
Expand Down

0 comments on commit f269393

Please sign in to comment.