providers/oauth2: accept token as post param

This commit is contained in:
Jens Langhammer
2020-09-16 23:31:16 +02:00
parent 818f417fd8
commit 4b39c71de0
8 changed files with 50 additions and 22 deletions

View File

@ -1,6 +1,8 @@
"""Proxy and Outpost e2e tests"""
from sys import platform
from time import sleep
from typing import Any, Dict, Optional
from unittest.case import skipUnless
from docker.client import DockerClient, from_env
from docker.models.containers import Container
@ -14,6 +16,7 @@ from passbook.outposts.models import Outpost, OutpostDeploymentType, OutpostType
from passbook.providers.proxy.models import ProxyProvider
@skipUnless(platform.startswith("linux"), "requires local docker")
class TestProviderProxy(SeleniumTestCase):
"""Proxy and Outpost e2e tests"""