We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e9e8e8 commit 19a3269Copy full SHA for 19a3269
dlrover/python/tests/test_servicer.py
@@ -10,7 +10,7 @@
10
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
# See the License for the specific language governing permissions and
12
# limitations under the License.
13
-
+import os
14
import time
15
import unittest
16
from unittest import mock
@@ -85,6 +85,9 @@ def setUp(self) -> None:
85
sync_service=sync_service,
86
)
87
88
+ def tearDown(self) -> None:
89
+ os.environ.clear()
90
+
91
def test_query_running_nodes(self):
92
request = elastic_training_pb2.Message()
93
message = grpc.RunningNodesRequest()
0 commit comments