Previously the extension only search pipeline for reference in :
/pipelines//pipeline_xxxx.py
This has proven to be too restrictive, as most project that comes with a lot of pipeline abandon the standard structure provided in spaceflights. For example:
package/pipelines/training.py
This either use the pipeline_xx convention and skip the folder and simply put node and pipeline into one file. The change will cause the extension searching more files, but performance seems to be ok.
We need to work on performance improvement later anyway so this is not a big concern for now.
Previously the extension only search pipeline for reference in :
This has proven to be too restrictive, as most project that comes with a lot of pipeline abandon the standard structure provided in spaceflights. For example:
This either use the
pipeline_xx
convention and skip the folder and simply put node and pipeline into one file. The change will cause the extension searching more files, but performance seems to be ok.We need to work on performance improvement later anyway so this is not a big concern for now.