Skip to content

Commit ebeb221

Browse files
committed
chore: cleanup CI verbosity and deprecated struct docs
- Remove --verbose flag from CI test commands for cleaner output - Remove invalid spawn example lines from deprecated DistributedSystem docs
1 parent a78d168 commit ebeb221

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
3939

4040
- name: Run tests
41-
run: cargo test --all-features --verbose
41+
run: cargo test --all-features
4242

4343
- name: Run doc tests
44-
run: cargo test --all-features --doc --verbose
44+
run: cargo test --all-features --doc
4545

4646
- name: Run prop tests
4747
run: QUICKCHECK_TESTS=100 cargo test prop_ --all-features

joerl/src/distributed.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,6 @@ impl NodeRegistry {
417417
/// "127.0.0.1:5000",
418418
/// "127.0.0.1:4369"
419419
/// ).await.unwrap();
420-
/// let actor = system.system().spawn(MyActor);
421420
/// # }
422421
/// ```
423422
///
@@ -430,7 +429,6 @@ impl NodeRegistry {
430429
/// "127.0.0.1:5000",
431430
/// "127.0.0.1:4369"
432431
/// ).await.unwrap();
433-
/// let actor = system.spawn(MyActor);
434432
/// # }
435433
/// ```
436434
#[deprecated(

0 commit comments

Comments
 (0)