diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-04-22 17:13:24 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-04-25 13:19:07 +0200 |
commit | ff0f2d207c47b9e473c356227b32c19e4510b4be (patch) | |
tree | 84b3064f031727f3d9e61ed56d71269ab5f620c8 /tests/test_server.py | |
parent | 4d8810538798aa815a459f298349a03fc6b3ea3f (diff) | |
download | haketilo-hydrilla-ff0f2d207c47b9e473c356227b32c19e4510b4be.tar.gz haketilo-hydrilla-ff0f2d207c47b9e473c356227b32c19e4510b4be.zip |
support --help and --version options when running the sample wsgi script from command line
Diffstat (limited to 'tests/test_server.py')
-rw-r--r-- | tests/test_server.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_server.py b/tests/test_server.py index 1da5663..0820d5c 100644 --- a/tests/test_server.py +++ b/tests/test_server.py @@ -43,7 +43,8 @@ from werkzeug import Response from hydrilla import util as hydrilla_util from hydrilla.builder import Build -from hydrilla.server import HydrillaApp, config, _version +from hydrilla.server import config, _version +from hydrilla.server.serve import HydrillaApp here = Path(__file__).resolve().parent config_path = here / 'config.json' |