diff options
author | Muriithi Frederick Muriuki | 2018-03-18 08:56:03 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-03-18 08:56:03 +0300 |
commit | 5ccf077f53c6546bb9258c7116b4b1cf8903375f (patch) | |
tree | 3c4cafc0bc0b481490674c807f279b4371130d0c /test/requests/test-website.py | |
parent | 55f42f8f972ab3940711fc7b5e39335bc35445b5 (diff) | |
download | genenetwork2-5ccf077f53c6546bb9258c7116b4b1cf8903375f.tar.gz |
Initialise mapping tests
* Add mapping tests, and build the first of the tests.
Diffstat (limited to 'test/requests/test-website.py')
-rwxr-xr-x | test/requests/test-website.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/test/requests/test-website.py b/test/requests/test-website.py index f65c3fc8..2bef6eb1 100755 --- a/test/requests/test-website.py +++ b/test/requests/test-website.py @@ -4,9 +4,10 @@ # # Mostly to pick up the Guix GN2_PROFILE and python modules from __future__ import print_function -from main_web_functionality import check_main_web_functionality -from link_checker import check_links import argparse +from link_checker import check_links +from mapping_tests import check_mapping +from main_web_functionality import check_main_web_functionality print("Mechanical Rob firing up...") @@ -15,6 +16,7 @@ def run_all(args_obj, parser): print("Running all tests.") check_main_web_functionality(args_obj, parser) check_links(args_obj, parser) + check_mapping(args_obj, parser) # TODO: Add other functions as they are created. def print_help(args_obj, parser): @@ -51,14 +53,14 @@ parser.add_argument("-f", "--main-functionality", dest="accumulate" , default=print_help , help="Checks for main web functionality.") +parser.add_argument("-m", "--mapping", dest="accumulate" + , action="store_const", const=check_mapping, default=print_help + , help="Checks for mapping.") + # parser.add_argument("-n", "--navigation", dest="accumulate" # , action="store_const", const=check_navigation, default=print_help # , help="Checks for navigation.") -# parser.add_argument("-m", "--mapping", dest="accumulate" -# , action="store_const", const=check_mapping, default=print_help -# , help="Checks for mapping.") - # parser.add_argument("-s", "--skip-broken", dest="accumulate" # , action="store_const", const=dummy, default=print_help # , help="Skip tests that are known to be broken.") |