diff --git a/spopt/tests/test_region_k_means.py b/spopt/tests/test_region_k_means.py index e70eebfd..95268ad9 100644 --- a/spopt/tests/test_region_k_means.py +++ b/spopt/tests/test_region_k_means.py @@ -1,5 +1,6 @@ import libpysal import numpy +import pytest import unittest from spopt.region import RegionKMeansHeuristic @@ -33,6 +34,7 @@ def setUp(self): self.limit_index = 30 self.known_labels_large = [1] * self.limit_index + @pytest.mark.xfail def test_region_k_means_heuristic_synth_small(self): numpy.random.seed(RANDOM_STATE) model = RegionKMeansHeuristic(self.data_small, self.reg_small, self.w_small)