NeuroML / pyNeuroML

A single package in Python unifying scripts and modules for reading, writing, simulating and analysing NeuroML2/LEMS models.
https://docs.neuroml.org/Userdocs/Software/pyNeuroML.html
GNU Lesser General Public License v3.0
36 stars 30 forks source link

pynml -validate *nml doesn't validate all *nml files at once #166

Closed pgleeson closed 1 year ago

pgleeson commented 2 years ago

jnml -validate *nml will validate all nml files in the present dir (and provide a brief summary), but `pynml -validate nml` will run jnml N times, once for each of the N *nml files.

sanjayankur31 commented 1 year ago

Note that we can now validate models against the schema without needing jnml (using the validate() methods that we've added to each component type python class). We need to migrate the extra tests over from jnml. This is WIP here: https://github.com/NeuralEnsemble/libNeuroML/pull/156

pgleeson commented 1 year ago

Closing as original issue fixed