3 releases

new 0.1.2 Apr 17, 2024
0.1.1 Jan 24, 2024
0.1.0 Jan 22, 2024

#97 in Testing

Download history 197/week @ 2024-01-22 134/week @ 2024-01-29 109/week @ 2024-02-05 41/week @ 2024-02-12 202/week @ 2024-02-19 84/week @ 2024-02-26 30/week @ 2024-03-04 269/week @ 2024-03-11 149/week @ 2024-03-18 48/week @ 2024-03-25 810/week @ 2024-04-01 329/week @ 2024-04-08 332/week @ 2024-04-15

1,523 downloads per month

MIT/Apache

84KB

group-runner

Group Rust executable output in GitHub logs

group-runner is useful, e.g., when you have lots of integration tests and seeing their output concatenated can be overwhelming.

Example output

  1. In your GitHub workflow, install group-runner:

    steps:
      - name: Install group-runner
        run: cargo install group-runner
    
  2. Pass the following option to cargo run, cargo test, or cargo bench:

    --config "target.'cfg(all())'.runner = 'group-runner'"
    

    Example:

    steps:
      - name: Test
        run: cargo test --config "target.'cfg(all())'.runner = 'group-runner'"
    

    See The Cargo Book for more information.

Notes

  • To avoid mixing build output with test output, we recommend building tests in a separate step prior to running them. Example:

    steps:
      - name: Build
        run: cargo test --no-run
      - name: Test
        run: cargo test --config "target.'cfg(all())'.runner = 'group-runner'"
    

No runtime deps