Skip to content
Snippets Groups Projects

test: picodata test <filter> to only run matching tests

Merged Georgy Moshkin requested to merge feat/test/filter into master
2 files
+ 14
2
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 5
1
@@ -228,7 +228,11 @@ impl Expel {
#[derive(Debug, Parser, tlua::Push)]
#[clap(about = "Run picodata integration tests")]
pub struct Test {}
pub struct Test {
#[clap()]
/// Only run tests matching the filter.
pub filter: Option<String>,
}
impl Test {
pub fn tt_args(&self) -> Result<Vec<CString>, String> {
Loading