add integration test for webui

This commit is contained in:
Jörg Thalheim
2023-08-24 12:33:55 +02:00
parent 55ed397d21
commit 834673e24e
2 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import argparse
from . import register_parser
if __name__ == "__main__":
# this is use in our integration test
parser = argparse.ArgumentParser()
register_parser(parser)
args = parser.parse_args()
args.func(args)