-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
141 additions
and
136 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,32 +25,32 @@ def default_litestar_app() -> litestar.Litestar: | |
|
||
|
||
@pytest.fixture() | ||
def minimum_sentry_config() -> SentryConfig: | ||
def minimal_sentry_config() -> SentryConfig: | ||
return SentryConfig(sentry_dsn="https://[email protected]/0") | ||
|
||
|
||
@pytest.fixture() | ||
def minimum_logging_config() -> LoggingConfig: | ||
def minimal_logging_config() -> LoggingConfig: | ||
return LoggingConfig(service_debug=False) | ||
|
||
|
||
@pytest.fixture() | ||
def minimum_prometheus_config() -> PrometheusConfig: | ||
def minimal_prometheus_config() -> PrometheusConfig: | ||
return PrometheusConfig() | ||
|
||
|
||
@pytest.fixture() | ||
def minimum_swagger_config() -> SwaggerConfig: | ||
def minimal_swagger_config() -> SwaggerConfig: | ||
return SwaggerConfig() | ||
|
||
|
||
@pytest.fixture() | ||
def minimum_cors_config() -> SwaggerConfig: | ||
def minimal_cors_config() -> SwaggerConfig: | ||
return CorsConfig(cors_allowed_origins=["*"]) | ||
|
||
|
||
@pytest.fixture() | ||
def minimum_opentelemetry_config() -> OpentelemetryConfig: | ||
def minimal_opentelemetry_config() -> OpentelemetryConfig: | ||
return OpentelemetryConfig( | ||
service_name="test-micro-service", | ||
service_version="1.0.0", | ||
|
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.