https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 55beabf25a91e9363e9acbe773ca803e4c557409 authored by John Chilton on 04 July 2020, 14:26:59 UTC
Version 20.5.0 of test-base (tag galaxy-test-base-20.5.0).
Tip revision: 55beabf
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