From f5151651408b0cdf8c7420d8384051c3f38456d5 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 12 Jan 2016 23:51:36 +0100 Subject: [PATCH] Add docstring. --- tests/integration/webserver_sub_ssl.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration/webserver_sub_ssl.py b/tests/integration/webserver_sub_ssl.py index 6dbbe492e..5b004169d 100644 --- a/tests/integration/webserver_sub_ssl.py +++ b/tests/integration/webserver_sub_ssl.py @@ -7,6 +7,12 @@ import os.path import flask +"""Minimal flask webserver serving a Hello World via SSL. + +This script gets called as a QProcess from integration/conftest.py. +""" + + app = flask.Flask(__name__)