Feature request: return all output files from quarto inspect
#2378
Closed
wlandau
started this conversation in
Feature Requests
Replies: 1 comment 1 reply
-
@allenmanning @dragonstyle We discuss Also this Idea posted on Discussion in September may have been lost in triage: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The
targets
R package integrates with Quarto viatarchetypes::tar_quarto()
for reproducible analysis pipelines. For reproducibility,targets
hashes the input and output files from Quarto and uses the hashes to decide whether to run the Quarto document or project. To learn which input and output files to track,tar_quarto()
digs through the output ofquarto inspect
and tries to figure out which input files Quarto needs and which output files Quarto will generate. It mostly works, but there are edge cases like ropensci/tarchetypes#102 and ropensci/tarchetypes#107 (mentioned in quarto-dev/quarto-r#14) (and it is not blazing fast either). On the other hand,tarchetypes::tar_quarto()
is not in a position to circumventquarto inspect
and manually emulate the internal decisions and behaviors of Quarto. So it would be extremely helpful if Quarto would straightforwardly list all its input and output file paths for a project or document.Beta Was this translation helpful? Give feedback.
All reactions