https://github.com/galaxyproject/galaxy
Raw File
Tip revision: a7f0a365be176e8ae4445db147a634b3b1fbb3b3 authored by mvdbeek on 13 June 2023, 15:58:13 UTC
Create version 23.0.2
Tip revision: a7f0a36
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