https://github.com/galaxyproject/galaxy
Raw File
Tip revision: d0a93ff62808e7e1727c7deb4a48853639bd7ece authored by Nicola Soranzo on 29 October 2018, 14:11:44 UTC
Merge pull request #6934 from dannon/doc_update
Tip revision: d0a93ff
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