https://github.com/galaxyproject/galaxy
Raw File
Tip revision: ed282c2818c3df0b548ed288e9a000f23ac91bcb authored by Nate Coraor on 05 August 2020, 14:21:30 UTC
Merge remote-tracking branch 'upstream/release_18.09' into release_19.01
Tip revision: ed282c2
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