You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently every notebook gets outputted to the buildout directory, regardless of the initial folder structure in which they were located. For example, notebooks from /docs/source/notebook-components/ and /docs/source/notebooks/ are sent to the same output directory, which might cause confusion.
The solution would be to keep the initial folder structure. We would then have buildout/notebook-components and buildout/notebooks.
The text was updated successfully, but these errors were encountered:
Another cheap way to achieve this is to have the output file right next to the original file. We already archive the original files so it falls under the same existing archiving rules and if the original files are under different folder structures, it will be preserved as well.
That said, the flat structure was for an easy access on Jenkins when browsing the archived output. Nested structure requires many clicks to go back and forth between the different folders.
I'd suggest this output structure be a toggle so the existing behavior is preserved and the new behavior can be activated when desired.
I would say that simply preserving the input structure for the notebook outputs would be the best way to avoid name clash. Having a toggle for this type of thing is cumbersome for no reason.
I would say that simply preserving the input structure for the notebook outputs would be the best way to avoid name clash. Having a toggle for this type of thing is cumbersome for no reason.
Yeah I think you might be right. The nested directory structure is slow to navigate but I don't have to dig inside it too often yet. Let's avoid premature optimization.
Currently every notebook gets outputted to the
buildout
directory, regardless of the initial folder structure in which they were located. For example, notebooks from/docs/source/notebook-components/
and/docs/source/notebooks/
are sent to the same output directory, which might cause confusion.The solution would be to keep the initial folder structure. We would then have
buildout/notebook-components
andbuildout/notebooks
.The text was updated successfully, but these errors were encountered: