mirror of
https://github.com/goauthentik/authentik
synced 2026-04-25 17:15:26 +02:00
* re-instate previously flaky test Signed-off-by: Jens Langhammer <jens@goauthentik.io> * break up big file Signed-off-by: Jens Langhammer <jens@goauthentik.io> * move geoip data to subdir Signed-off-by: Jens Langhammer <jens@goauthentik.io> * i am but a weak man Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix ldap disconnect in testing Signed-off-by: Jens Langhammer <jens@goauthentik.io> * account for mismatched uid due to test server process Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
11 lines
361 B
Python
11 lines
361 B
Python
from tests.decorators import retry
|
|
from tests.openid_conformance.base import TestOpenIDConformance
|
|
|
|
|
|
class TestOpenIDConformanceImplicit(TestOpenIDConformance):
|
|
|
|
@retry()
|
|
def test_oidcc_implicit_certification_test_plan(self):
|
|
test_plan_name = "oidcc-implicit-certification-test-plan"
|
|
self.run_test(test_plan_name, self.test_plan_config)
|