Skip to content

Commit

Permalink
test_owhyper: use a smaller unknowns test file
Browse files Browse the repository at this point in the history
Hyper is very slow with unknows values for dask tables
  • Loading branch information
markotoplak committed Oct 10, 2023
1 parent 55cd482 commit db4808a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orangecontrib/spectroscopy/tests/test_owhyper.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def setUpClass(cls):
# dataset without any attributes, but XY
whitelight0 = cls.whitelight.transform(
Orange.data.Domain([], None, metas=cls.whitelight.domain.metas))[:100]
unknowns = cls.iris.copy()
unknowns = cls.iris[::10].copy()
with unknowns.unlocked():
unknowns.X[:, :] = float("nan")
single_pixel = cls.iris[:50] # all image coordinates map to one spot
Expand Down

0 comments on commit db4808a

Please sign in to comment.