mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
4851179522
* enterprise/providers/ssf: more conformance fixes Signed-off-by: Jens Langhammer <jens@goauthentik.io> * include request when possible Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove null state Signed-off-by: Jens Langhammer <jens@goauthentik.io> * t Signed-off-by: Jens Langhammer <jens@goauthentik.io> * re-gen & format Signed-off-by: Jens Langhammer <jens@goauthentik.io> * remove None state Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix ci Signed-off-by: Jens Langhammer <jens@goauthentik.io> * revert a thing Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix ssf conformance test Signed-off-by: Jens Langhammer <jens@goauthentik.io> * no subtest Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix network Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add test for stream update Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
12 lines
348 B
Python
12 lines
348 B
Python
from tests.decorators import retry
|
|
from tests.openid_conformance.base import TestOpenIDConformance
|
|
|
|
|
|
class TestOpenIDConformanceBasic(TestOpenIDConformance):
|
|
|
|
@retry()
|
|
def test_oidcc_basic_certification_test(self):
|
|
self.run_test(
|
|
"oidcc-basic-certification-test-plan", self.test_plan_config, self.test_variant
|
|
)
|