13 lines
227 B
Python
13 lines
227 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# type: ignore
|
||
|
from __future__ import annotations
|
||
|
|
||
|
import pytest
|
||
|
|
||
|
from .fixtures import TestingAWSSecrets
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def testing_aws_secrets() -> TestingAWSSecrets:
|
||
|
return TestingAWSSecrets()
|