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
@tyranronwriter::Basic now outputs only step name itself and table, if present. No docstrings.
@ilslv should we support docstrings outputting as opt-in? Maybe some kind of --verbose CLI opt?
@tyranron I would argue that docstrings are useful as diagnostics (as shown in this issue) or for more verbose explanation, which I'm not sure is useful as part of output. And most importantly, we'll need a way to show 1 set of cli options, if writer::Basic is present and the other one if some other OutputWriter used.
We need a way to allow setting writer::Basic output verbosity via CLI, while considering possible custom Writer implementations with or without changing the CLI.
The text was updated successfully, but these errors were encountered:
- make CLI options composable by adding `Cli` associated type to `Parser`, `Runner` and `Writer` traits
- switch to `structopt` crate as `clap` doesn't support generic flattening at the moment
- allow extend `cli::Opts` with a custom `StructOpt` deriver
Additionally:
- fix accidenatlly messed up imports style
Co-authored-by: tyranron <tyranron@gmail.com>
Revealed from #56 (comment)
We need a way to allow setting
writer::Basic
output verbosity via CLI, while considering possible customWriter
implementations with or without changing the CLI.The text was updated successfully, but these errors were encountered: