From 44c868b8fcdd988bdb41f69c50934fcc5198eb47 Mon Sep 17 00:00:00 2001 From: rg936672 <162452529+rg936672@users.noreply.github.com> Date: Wed, 5 Feb 2025 11:18:05 +0000 Subject: [PATCH] tests: remove skip for SoftmaxLMC test_predictions Refs: #473 --- tests/units/classification/test_categorical.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/units/classification/test_categorical.py b/tests/units/classification/test_categorical.py index 73faaab..7a4bb44 100644 --- a/tests/units/classification/test_categorical.py +++ b/tests/units/classification/test_categorical.py @@ -16,10 +16,8 @@ Tests for the CategoricalClassification decorator. """ -import platform from unittest import expectedFailure -import pytest import sklearn import torch from gpytorch.mlls import VariationalELBO @@ -205,9 +203,6 @@ def setUp(self) -> None: rng=self.rng, ) - # TODO(rg): Investigate why this fails on Mac - # https://github.com/gchq/Vanguard/issues/473 - @pytest.mark.skipif(platform.system() == "Darwin", reason="Currently fails on Mac") def test_predictions(self) -> None: """Predict on a test dataset, and check the predictions are reasonably accurate.""" # This test failed for eight different seeds in a row when fitting for only 10 iterations - this one really