Hello, I'm trying to format a test tag in a tool config for the public Tool Shed that includes a repeated input parameter. I followed the syntax suggested in the following archived galaxy-dev post (was unable to find much other guidance): http://git.net/galaxy-development-source-control/msg15241.html, but the config file must be invalid because my repository on the Tool Shed does not register as an installable Galaxy utility. Any guidance is much appreciated.. Below are the relevant config code sections: <inputs> <repeat name="Files" title="Join file"> <param name="joinMe" type="data" checked="yes" format="tabular" label="Join" /> <param name="joinCol" label="using column" type="data_column" data_ref="joinMe" /> </repeat> <param name="headerYes" type="select" label="Treat first line as header?"> <option value="yes" selected="true">Yes</option> <option value="no">No</option> </param> </inputs> <outputs> <data format="tabular" name="Joined_all" label="Multi-Join result"/> </outputs> <tests> <test> <param name="Files_0|joinMe" value="multi_join_serial_in1.tab" ftype="tabular"/> <param name="Files_0|joinCol" value="1"/> <param name="Files_1|joinMe" value="multi_join_serial_in2.tab" ftype="tabular"/> <param name="Files_1|joinCol" value="1"/> <param name="Files_2|joinMe" value="multi_join_serial_in3.tab" ftype="tabular"/> <param name="Files_2joinCol" value="2"/> <param name="headerYes" value="yes"/> <output name="Joined_all" value="multi_join_serial_out.tab" ftype="tabular"/> <test/> <tests/> Thanks for your help, CS