Configuration Options
Configuring AlgoPytest is controlled by environment variables. These environment variables must be set before executing pytest for them to take any effect. If an environment variable is omitted, AlgoPytest takes on the default value, if there is one.
ALGOD_ADDRESS
: The address wherealgod
is listening on. (Default:"http://localhost:4001"
)ALGOD_TOKEN
: The secret token used to connect toalgod
. (Default:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
)INDEXER_ADDRESS
: The address where theindexer
is listening on. (Default:"http://localhost:8980"
)INDEXER_TOKEN
: The secret token used to connect to theindexer
.KMD_ADDRESS
: The address wherekmd
is listening on. (Default:"http://localhost:4002"
)KMD_TOKEN
: The secret token used to connect tokmd
. (Default:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
)KMD_WALLET_NAME
: The name of the wallet inkmd
from which all of the accounts are generated. (Default:"unencrypted-default-wallet"
)KMD_WALLET_PASSWORD
: The password used to access the wallet inkmd
from which all of the accounts are generated. (Default:""
)INITIAL_FUNDS_ACCOUNT
: The address in yoursandbox
which was allocated the initial funds. (Default: The first “Online” address in yoursandbox
)INDEXER_TIMEOUT
: The timeout in seconds to use when querying the indexer before raising an exception. (Default:61
)