You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Fix linting errors in CI workflow #58
This commit fixes a number of linting errors that were causing the CI workflow to fail. The errors were primarily related to unused imports, f-strings without placeholders, and unused variables.
* Refactor and clean up test code #58
Removed unused imports and variables in test_maillogsentinel_setup.py and test_sql_exporter.py. Updated test_run_sql_export_basic_flow to use context manager for patching datetime and simplified the mocking of the logger. These changes improve test clarity and maintainability.
* Remove duplicate unittest.mock import #58
Consolidated the import of patch and MagicMock from unittest.mock to avoid redundancy in the test file.
* Remove unused MagicMock import #58
Cleaned up the import statements by removing MagicMock, which was not used in the test file.
0 commit comments