https://github.com/galaxyproject/galaxy
Raw File
Tip revision: af730bc6b5216ba0b7eb6c04c10df9089e449b59 authored by mvdbeek on 29 July 2023, 10:28:32 UTC
Create version 23.0.5
Tip revision: af730bc
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