https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 92bd1d92dd7f4f0cfe5d6274bbc28a8d63a739f6 authored by John Chilton on 03 July 2020, 16:19:37 UTC
Version 20.5.0 of util (tag galaxy-util-20.5.0).
Tip revision: 92bd1d9
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