File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ jobs:
140140 working-directory : lambdas/id_sync
141141 id : id_sync
142142 env :
143- PYTHONPATH : ${{ github.workspace }}/lambdas/id_sync/src:${{ github.workspace }}/lambdas/id_sync/tests
143+ PYTHONPATH : ${{ github.workspace }}/lambdas/id_sync/src:${{ github.workspace }}/lambdas/id_sync/tests:${{ github.workspace }}/lambdas/shared/src:${{ github.workspace }}/lambdas/shared/tests
144144 continue-on-error : true
145145 run : |
146146 poetry env use 3.11
Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ def setUp(self):
88 self .logger_info_patcher = patch ("logging.Logger.info" )
99 self .mock_logger_info = self .logger_info_patcher .start ()
1010
11+ def tearDown (self ):
12+ patch .stopall ()
13+
1114 def test_record_processor_success (self ):
1215 test_record = "abc1"
13- response = process_record (test_record , None )
16+ response =
17+ (test_record , None )
1418 self .assertEqual (response , f"hello world { test_record } " )
You can’t perform that action at this time.
0 commit comments