From 27dda244e3eb72ec1d774cacba27e6253b1a2b49 Mon Sep 17 00:00:00 2001 From: Alexandros Koumparoulis Date: Tue, 29 Oct 2024 18:49:24 -0700 Subject: [PATCH] remove fixture Signed-off-by: Alexandros Koumparoulis --- tests/conftest.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 118e978e63c7..e9e16023363a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. +# siCopyright (c) 2020, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -117,9 +117,9 @@ def cleanup_local_folder(): rmtree('./nemo_experiments', ignore_errors=True) -@pytest.fixture(autouse=True) -def reset_singletons(): - Singleton._Singleton__instances = {} +#@pytest.fixture(autouse=True) +#def reset_singletons(): +# Singleton._Singleton__instances = {} @pytest.fixture(scope="session")