From eea81713fe5e2cbd71be283e2b6621c6dbfe7d51 Mon Sep 17 00:00:00 2001 From: Bazire Date: Tue, 19 Sep 2023 14:43:31 +0200 Subject: [PATCH] Remove test_time, since it's too unstable --- python-client/tests/test_logging.py | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 python-client/tests/test_logging.py diff --git a/python-client/tests/test_logging.py b/python-client/tests/test_logging.py deleted file mode 100644 index f36ca6f976..0000000000 --- a/python-client/tests/test_logging.py +++ /dev/null @@ -1,12 +0,0 @@ -import time - -import pytest - -from giskard.ml_worker.utils.logging import Timer - - -def test_timer(): - timer = Timer() - time.sleep(0.1) - duration = timer.stop() - assert duration.microseconds == pytest.approx(0.1 * 10**6, 0.10)