https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 72bfa2b76db1aae57e5814e8f10d9755fa81f795 authored by Nicola Soranzo on 11 December 2022, 22:31:52 UTC
Merge branch 'release_21.05' into release_21.09
Tip revision: 72bfa2b
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