diff --git a/.gitignore b/.gitignore index a843240..fbfa1c4 100644 --- a/.gitignore +++ b/.gitignore @@ -9,4 +9,6 @@ lib64/ lib64 **/*pyvenv.cfg share/ -lib/ \ No newline at end of file +lib/ +include/ +__pycache__/ diff --git a/bin/bin_azure_storage_api.py b/patch/bin_azure_storage_api.py similarity index 100% rename from bin/bin_azure_storage_api.py rename to patch/bin_azure_storage_api.py diff --git a/bin/bin_test_azure_storage_api.py b/patch/bin_test_azure_storage_api.py similarity index 100% rename from bin/bin_test_azure_storage_api.py rename to patch/bin_test_azure_storage_api.py diff --git a/tests/test_inference_request.py b/tests/test_inference_request.py index 9f9c5cd..91b94b7 100644 --- a/tests/test_inference_request.py +++ b/tests/test_inference_request.py @@ -36,7 +36,7 @@ def tearDown(self) -> None: self.image_src = None self.test = None - @patch("bin.bin_azure_storage_api.mount_container") # TODO : change to patch the mount_container function of the datastore repo + @patch("patch.bin_azure_storage_api.mount_container") # TODO : change to patch the mount_container function of the datastore repo def test_inference_request_successful(self, mock_container): # Mock azure client services mock_blob = Mock() @@ -100,7 +100,7 @@ def test_inference_request_successful(self, mock_container): print(expected_keys == responses) self.assertEqual(responses, expected_keys) - @patch("bin.bin_azure_storage_api.mount_container") # TODO : change to patch the mount_container function of the datastore repo + @patch("patch.bin_azure_storage_api.mount_container") # TODO : change to patch the mount_container function of the datastore repo def test_inference_request_unsuccessful(self, mock_container): # Mock azure client services mock_blob = Mock()