https://github.com/galaxyproject/galaxy
Raw File
Tip revision: dbf6d3a5656b6bb1a307cf2862dd45a2e9326e71 authored by John Chilton on 27 January 2020, 14:36:57 UTC
Merge pull request #9234 from mvdbeek/mount_configs_rw
Tip revision: dbf6d3a
validate_test_tools.sh
#!/bin/sh

cd "$(dirname "$0")"/..

xsd_path="lib/galaxy/tools/xsd/galaxy.xsd"
# Lint the XSD
xmllint --noout "$xsd_path"

test_tools_path='test/functional/tools'
tool_files_list=$(ls "$test_tools_path"/*.xml | grep -v '_conf.xml$')
sh scripts/validate_tools.sh $tool_files_list
back to top