Fix linter issues

This commit is contained in:
Philipp Kolberg 2023-11-30 04:00:26 +01:00
parent a9a77bc98c
commit 0848f8bf2e
No known key found for this signature in database
GPG Key ID: 4C58CB0448FF9061
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,5 @@
"""outpost tests""" """outpost tests"""
from unittest.mock import MagicMock, patch from unittest.mock import MagicMock, patch
from authentik.outposts.controllers.k8s.service import ServiceReconciler
import pytest import pytest
from django.test import TestCase from django.test import TestCase
@ -10,6 +9,7 @@ from kubernetes.client.exceptions import OpenApiException
from authentik.core.tests.utils import create_test_flow from authentik.core.tests.utils import create_test_flow
from authentik.lib.config import CONFIG from authentik.lib.config import CONFIG
from authentik.outposts.controllers.k8s.deployment import DeploymentReconciler from authentik.outposts.controllers.k8s.deployment import DeploymentReconciler
from authentik.outposts.controllers.k8s.service import ServiceReconciler
from authentik.outposts.controllers.k8s.triggers import NeedsUpdate from authentik.outposts.controllers.k8s.triggers import NeedsUpdate
from authentik.outposts.models import KubernetesServiceConnection, Outpost, OutpostType from authentik.outposts.models import KubernetesServiceConnection, Outpost, OutpostType
from authentik.outposts.tasks import outpost_connection_discovery from authentik.outposts.tasks import outpost_connection_discovery
@ -90,7 +90,7 @@ class OutpostKubernetesTests(TestCase):
) )
deployment_reconciler.delete(deployment_reconciler.get_reference_object()) deployment_reconciler.delete(deployment_reconciler.get_reference_object())
@pytest.mark.timeout(120) @pytest.mark.timeout(120)
def test_service_reconciler(self): def test_service_reconciler(self):
"""test that service requires update""" """test that service requires update"""