diff options
author | zsloan | 2020-08-20 12:21:48 -0500 |
---|---|---|
committer | zsloan | 2020-08-20 12:21:48 -0500 |
commit | 97a662c900d0856c21a36ec42c50eb87898bcfb2 (patch) | |
tree | 88540a3d1196e6b689317ac18808631b9090c87f /test/requests/test-website.py | |
parent | 72e7b028060c04bb210064f4de263c46b700921f (diff) | |
parent | 5d7e1f1fcf2f262a42b64a7aa42edeb3e53ee71c (diff) | |
download | genenetwork2-97a662c900d0856c21a36ec42c50eb87898bcfb2.tar.gz |
Merge branch 'testing' of github.com:genenetwork/genenetwork2 into testing
Diffstat (limited to 'test/requests/test-website.py')
-rwxr-xr-x | test/requests/test-website.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/requests/test-website.py b/test/requests/test-website.py index 74057e7f..f90d1843 100755 --- a/test/requests/test-website.py +++ b/test/requests/test-website.py @@ -6,6 +6,7 @@ from __future__ import print_function import argparse from link_checker import check_links +from link_checker import check_packaged_js_files from mapping_tests import check_mapping from navigation_tests import check_navigation from main_web_functionality import check_main_web_functionality @@ -30,6 +31,7 @@ def run_all(args_obj, parser): link_checker.DO_FAIL = args_obj.fail check_main_web_functionality(args_obj, parser) check_links(args_obj, parser) + check_packaged_js_files(args_obj, parser) check_mapping(args_obj, parser) # TODO: Add other functions as they are created. |