Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,7 @@ repos:
^providers/odbc/.*\.py$|
^providers/openai/.*\.py$|
^providers/openfaas/.*\.py$|
^providers/oracle/.*\.py$|
^providers/pgvector/.*\.py$|
^providers/pinecone/.*\.py$|
^providers/postgres/.*\.py$|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ def test_execute(self, mock_run):
handler=mock.ANY,
)

@pytest.mark.db_test
@mock.patch.object(OracleHook, "callproc", autospec=OracleHook.callproc)
def test_push_oracle_exit_to_xcom(self, mock_callproc, request, dag_maker):
# Test pulls the value previously pushed to xcom and checks if it's the same
Expand Down