https://github.com/galaxyproject/galaxy
Raw File
Tip revision: 250c9c2844624412c433b71ac4cf6a22bf974b18 authored by mvdbeek on 22 August 2022, 19:25:14 UTC
Update version to 22.01.1
Tip revision: 250c9c2
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