Repository URL to install this package:
|
Version:
3.2.4 ▾
|
molecule
/
constants.py
|
|---|
"""Constants used by molecule."""
RC_SUCCESS = 0
RC_TIMEOUT = 3
RC_SETUP_ERROR = 4 # Broken setup, like missing Ansible
RC_UNKNOWN_ERROR = (
5 # Unexpected errors for which we do not have more specific codes, yet
)
MOLECULE_HEADER = "# Molecule managed"