concurrent_shell_commands 0.4.0

runs commands concurrently and display their name and output, with configurable filtering of output
Documentation
Feature: stderr to stdout

  Scenario: enabled
    When I run "conc --stderr-to-stdout 'echo error-output >&2'"
    Then STDOUT contains:
      """
      echo error-output >&2
      error-output
      """
    And STDERR is empty
    And the exit code is 0

  Scenario: disabled
    When I run "conc 'echo error-output >&2'"
    Then STDOUT contains:
      """
      echo error-output >&2
      """
    And STDERR contains:
      """
      error-output
      """
    And the exit code is 0