Skip to content

Commit

Permalink
fix(test): allow passing integration test suite with no tests
Browse files Browse the repository at this point in the history
Signed-off-by: vados <[email protected]>
  • Loading branch information
t3hmrman committed Nov 28, 2024
1 parent 34db5f1 commit 2639157
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ test-unit-watch:

test-int:
@{{just}} ensure-binary cargo-nextest CARGO_NEXTEST
@{{cargo}} nextest run -F tokio,derive -E 'kind(test)'
@{{cargo}} nextest run -F tokio,simple -E 'kind(test)'
@{{cargo}} nextest run -F async-std,derive -E 'kind(test)'
@{{cargo}} nextest run -F async-std,simple -E 'kind(test)'
@{{cargo}} nextest run --no-tests=pass -F tokio,derive -E 'kind(test)'
@{{cargo}} nextest run --no-tests=pass -F tokio,simple -E 'kind(test)'
@{{cargo}} nextest run --no-tests=pass -F async-std,derive -E 'kind(test)'
@{{cargo}} nextest run --no-tests=pass -F async-std,simple -E 'kind(test)'

test-examples:
@{{cargo}} run --example simple-tokio --features=tokio,simple
Expand Down

0 comments on commit 2639157

Please sign in to comment.