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 @@ -594,6 +594,7 @@ repos:
^providers/apache/flink/.*\.py$|
^providers/apache/iceberg/.*\.py$|
^providers/apache/kafka/.*\.py$|
^providers/arangodb/.*\.py$|
^providers/cloudant/.*\.py$|
^providers/cohere/.*\.py$|
^providers/common/compat/.*\.py$|
Expand Down
3 changes: 0 additions & 3 deletions providers/arangodb/tests/unit/arangodb/hooks/test_arangodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
from airflow.models import Connection
from airflow.providers.arangodb.hooks.arangodb import ArangoDBHook

pytestmark = pytest.mark.db_test


arangodb_client_mock = Mock(name="arangodb_client_for_test")


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
from airflow.utils import timezone

# The tests do not create dag runs, so db isolation tests are skipped
pytestmark = pytest.mark.db_test


DEFAULT_DATE = timezone.datetime(2017, 1, 1)
arangodb_hook_mock = Mock(name="arangodb_hook_for_test", **{"query.return_value.count.return_value": 1})
Expand Down