diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-05-08 00:03:39 +0200 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-05-08 00:03:39 +0200 |
commit | 6aa6dd514d5b80c9f36fec6c56d4094fd182de61 (patch) | |
tree | 595ee719da6e5201f47bf906a9a66af797f75045 /gitautodeploy/cli | |
parent | bc464eafdb743bd2cd6db2525f661de13ca4ef9a (diff) | |
download | Git-Auto-Deploy-6aa6dd514d5b80c9f36fec6c56d4094fd182de61.zip Git-Auto-Deploy-6aa6dd514d5b80c9f36fec6c56d4094fd182de61.tar.gz Git-Auto-Deploy-6aa6dd514d5b80c9f36fec6c56d4094fd182de61.tar.bz2 |
Ability to log incoming request in a way usable for test cases
Diffstat (limited to 'gitautodeploy/cli')
-rw-r--r-- | gitautodeploy/cli/config.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gitautodeploy/cli/config.py b/gitautodeploy/cli/config.py index bdbe12f..d4d98fb 100644 --- a/gitautodeploy/cli/config.py +++ b/gitautodeploy/cli/config.py @@ -23,6 +23,10 @@ def get_config_defaults(): # response. config['detailed-response'] = True + # Log incoming webhook requests in a way they can be used as test cases + config['log-test-case'] = False + config['log-test-case-dir'] = None + return config def get_config_from_environment(): |