diff options
author | Pjotr Prins | 2016-05-29 16:51:45 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-05-29 16:51:55 +0000 |
commit | 4ccb2411b78bcc5112316cef7192033d698b8b03 (patch) | |
tree | c894ae302b0bb9cdac7430e97361db32a40113a9 /bin | |
parent | a863f16d88b5904a1d401a0d9fa0e77824398f2e (diff) | |
download | genenetwork2-4ccb2411b78bcc5112316cef7192033d698b8b03.tar.gz |
Added JOSS paper
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/test-website | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/test-website b/bin/test-website index 2585b465..aeab459b 100755 --- a/bin/test-website +++ b/bin/test-website @@ -25,6 +25,10 @@ opts = OptionParser.new do |o| o.on('-l','--link-checker', 'Check for dead links') do options[:link_checker] = true end + + o.on('-n','--navigation-test', 'Check for navigation test results') do + options[:navigation_test] = true + end o.separator "" o.on_tail('-h', '--help', 'display this help and exit') do @@ -62,3 +66,8 @@ if options[:link_checker] else require 'main_web_functionality' end + +if options[:navigation_test] + require 'NavigationTest' +end + |