diff options
author | Muriithi Frederick Muriuki | 2018-03-21 11:22:48 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-03-21 11:22:48 +0300 |
commit | a20004e25d0143a14763180359e8266e31f9766f (patch) | |
tree | 70d9f4457e8d43b60e5db82108d2ff6df6a05df7 | |
parent | 883bcc257a38240de7de8888f78bac4406b5d027 (diff) | |
download | genenetwork2-a20004e25d0143a14763180359e8266e31f9766f.tar.gz |
Deactivate navigation tests
* Navigation depends on Javascript to render the elements being tested.
That would require selenium and its ilk to run such tests, meaning
such packages would need to be defined for Guix first.
-rwxr-xr-x | test/requests/test-website.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/requests/test-website.py b/test/requests/test-website.py index dbf3b822..f03c148a 100755 --- a/test/requests/test-website.py +++ b/test/requests/test-website.py @@ -58,9 +58,10 @@ 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.") +# Navigation tests deactivated since system relies on Javascript +# parser.add_argument("-n", "--navigation", dest="accumulate" +# , action="store_const", const=check_navigation, default=print_help +# , help="Checks for navigation.") # parser.add_argument("-s", "--skip-broken", dest="accumulate" # , action="store_const", const=dummy, default=print_help |