https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 9d31330c4ca1d0396166387c54d13483e0020a2f authored by Nicola Soranzo on 02 November 2022, 15:32:02 UTC
Merge branch 'release_20.05' into release_20.09
Tip revision: 9d31330
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