https://github.com/galaxyproject/galaxy
Raw File
Tip revision: fada8d2a60e625cf16fce7e20715422f86d6f40c authored by Nicola Soranzo on 05 July 2017, 14:05:28 UTC
Merge branch 'release_16.07' into release_16.10
Tip revision: fada8d2
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