This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import base64 | |
import pytest | |
from django.urls import reverse | |
from saml2 import server | |
from saml2.config import Config as PysamlConfig | |
@pytest.fixture(scope="session") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# STORAGE CONFIGURATION | |
# ------------------------------------------------------------------------------ | |
AWS_ACCESS_KEY_ID = env("DJANGO_AWS_ACCESS_KEY_ID") | |
AWS_SECRET_ACCESS_KEY = env("DJANGO_AWS_SECRET_ACCESS_KEY") | |
AWS_STORAGE_BUCKET_NAME = env("DJANGO_AWS_STORAGE_BUCKET_NAME") | |
AWS_AUTO_CREATE_BUCKET = True | |
AWS_QUERYSTRING_AUTH = False | |
AWS_S3_REGION_NAME = "eu-central-1" | |
AWS_S3_SIGNATURE_VERSION = "s3v4" |
OlderNewer