From 728f99efbe9a96601f9913b6e0ec63c4e0d77bd7 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Thu, 18 Jul 2024 12:19:02 +0200 Subject: [PATCH] fix missing import in test arm --- GPy/testing/test_gpy_kernels_state_space.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/GPy/testing/test_gpy_kernels_state_space.py b/GPy/testing/test_gpy_kernels_state_space.py index f2a63392..eb86c1f4 100644 --- a/GPy/testing/test_gpy_kernels_state_space.py +++ b/GPy/testing/test_gpy_kernels_state_space.py @@ -4,6 +4,7 @@ """ Testing state space related functions. """ +import pytest import numpy as np import GPy import GPy.models.state_space_model as SS_model @@ -620,7 +621,7 @@ class TestStateSpaceKernels: var_compare_decimal=2, ) except AssertionError: - raise SkipTest( + raise pytest.skip( "Skipping Regular kalman filter for kernel addition, because it is not stable (normal situation) for this data." )