summaryrefslogtreecommitdiffstats
path: root/gitautodeploy/cli
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2016-05-08 00:03:39 +0200
committerOliver Poignant <oliver@poignant.se>2016-05-08 00:03:39 +0200
commit6aa6dd514d5b80c9f36fec6c56d4094fd182de61 (patch)
tree595ee719da6e5201f47bf906a9a66af797f75045 /gitautodeploy/cli
parentbc464eafdb743bd2cd6db2525f661de13ca4ef9a (diff)
downloadGit-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.py4
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():