Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Merge requests
!255
test: picodata test <filter> to only run matching tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
test: picodata test <filter> to only run matching tests
feat/test/filter
into
master
Overview
0
Commits
1
Pipelines
1
Changes
2
Merged
Georgy Moshkin
requested to merge
feat/test/filter
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
2
Expand
picodata test foo_bar
this will only run inner tests that have
foo_bar
in their name
Edited
2 years ago
by
Georgy Moshkin
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
95f6fe7a
1 commit,
2 years ago
2 files
+
14
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/args.rs
+
5
−
1
Options
@@ -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