https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 2b79cf2aea35b1b1f4e94710ec3db865d927d50b authored by Dannon on 11 December 2022, 20:25:50 UTC
Merge pull request #15170 from nsoranzo/release_21.01_fix_passenv
Tip revision: 2b79cf2
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