Hi all,
I’ve been developing a Slicer extension in Python over the past 6 months to perform material mapping of Young’s modulus onto meshes from CT data, using Dr Elise Pegg’s project to perform the main material mapping, which copies BoneMat’s methods (her repo: GitHub - elisepegg/py_bonemat_abaqus: Assign material properties of bone to a finite element mesh · GitHub ). I started this whole project using the extension skeleton provided by the Extension Wizard, and I’ve been doing all my UI and functionality testing by adding it as an additional module to my local Slicer installation and going from there.
I’m almost done on the development side, and I’m looking to make it available for everyone to use soon. I’ve looked through the docs on publishing an extension (i.e. this page: Extensions — 3D Slicer documentation ) but I’m still slightly confused.
As far as I understand it, all I need to do is to fork the ExtensionsIndex repo, upload the proper JSON file and then submit a proper pull request. I just have some questions around testing. I’ve obviously done my own independent testing, but I haven’t written any tests in a class which inherits the ScriptedLoadableModuleTest class. Do I need to write those tests before submitting the extension?
Also, how does the Slicer testing dashboard work? Does my extension automatically get uploaded/tested there once my ExtensionsIndex pull request gets approved? Or do I need to upload it there myself and make sure everything passes/build correctly before it can be approved?
Finally, with the ‘tier’ system of requirements for these extensions, do I get to decide whether I want my extension to be a tier 1/3/5 extension? Does it just depend on what kind of commitment I want to make to maintaining it for users and future slicer versions?
Thanks in advance for any advice, I appreciate it.