diff options
author | Frederick Muriuki Muriithi | 2022-09-12 06:11:29 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-09-12 06:11:29 +0300 |
commit | 2f3c69472314dd0622eb1253d7e64476f5d74df4 (patch) | |
tree | fd762aee18fa0fdb6c63facc6070846402ddf189 | |
parent | 48655470c81c226a86829f8015beb81a8bd02850 (diff) | |
download | genenetwork2-2f3c69472314dd0622eb1253d7e64476f5d74df4.tar.gz |
Enable running correlation tests alone.
-rwxr-xr-x | test/requests/test-website.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/requests/test-website.py b/test/requests/test-website.py index c0b36182..06d5b5ca 100755 --- a/test/requests/test-website.py +++ b/test/requests/test-website.py @@ -125,6 +125,16 @@ parser.add_argument( help="Checks for mapping.", ) +parser.add_argument( + "-c", + "--correlations", + dest="accumulate", + action="store_const", + const=check_correlations, + default=print_help, + help="Checks that correlations run correctly.", +) + args = parser.parse_args() |