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 @@ -582,6 +582,7 @@ repos:
^providers/airbyte/.*\.py$|
^providers/cohere/.*\.py$|
^providers/datadog/.*\.py$|
^providers/discord/.*\.py$|
^providers/facebook/.*\.py$|
^providers/grpc/.*\.py$|
^providers/hashicorp/.*\.py$|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,6 @@
from airflow.models import Connection
from airflow.providers.discord.hooks.discord_webhook import DiscordWebhookHook

pytestmark = pytest.mark.db_test


class TestDiscordWebhookHook:
_config = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
from airflow.models import Connection
from airflow.providers.discord.notifications.discord import DiscordNotifier

pytestmark = pytest.mark.db_test


@pytest.fixture(autouse=True)
def setup_connections(create_connection_without_db):
Expand Down