48df5bd5af
* Add format command to makefile * Refactor executions to be a attribute of StateMachine * Begin to add tests for execution history * Add tests for failed and successful event histories, with implementations * Add failure case to environment var check * Skip test if in server mode and update implementation coverage * Add conditional import for mock to cover python 2 * Refactor stop execution logic into StateMachine * Refactor event history environment variable into settings.py * Remove typing and os import
16 lines
565 B
Python
16 lines
565 B
Python
import os
|
|
|
|
TEST_SERVER_MODE = os.environ.get("TEST_SERVER_MODE", "0").lower() == "true"
|
|
INITIAL_NO_AUTH_ACTION_COUNT = float(
|
|
os.environ.get("INITIAL_NO_AUTH_ACTION_COUNT", float("inf"))
|
|
)
|
|
|
|
|
|
def get_sf_execution_history_type():
|
|
"""
|
|
Determines which execution history events `get_execution_history` returns
|
|
:returns: str representing the type of Step Function Execution Type events should be
|
|
returned. Default value is SUCCESS, currently supports (SUCCESS || FAILURE)
|
|
"""
|
|
return os.environ.get("SF_EXECUTION_HISTORY_TYPE", "SUCCESS")
|