https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 887f1ec9256045b4959e4caf30dcc60509973c60 authored by Dannon Baker on 25 September 2023, 22:06:55 UTC
Update version to 23.1.
Tip revision: 887f1ec
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