Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Commit

Permalink
[Fetch Migration] Unit test updates
Browse files Browse the repository at this point in the history
Signed-off-by: Kartik Ganesh <[email protected]>
  • Loading branch information
kartg committed Nov 17, 2023
1 parent 2d72a50 commit edac99b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions FetchMigration/python/tests/test_fetch_orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#

import copy
import logging
import os
import unittest
from unittest import mock
Expand All @@ -23,6 +24,12 @@


class TestFetchOrchestrator(unittest.TestCase):
# Run before each test
def setUp(self) -> None:
logging.disable(logging.CRITICAL)

def tearDown(self) -> None:
logging.disable(logging.NOTSET)

@patch('migration_monitor.run')
@patch('subprocess.Popen')
Expand Down

0 comments on commit edac99b

Please sign in to comment.