concurrent_shell_commands 0.4.0

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

  Scenario: output to stderr
    When I run "conc 'echo one >&2' 'echo two >&2'"
    Then STDOUT contains:
      """
      echo one >&2
      """
    And STDERR contains:
      """
      one
      """
    And STDOUT contains:
      """
      echo two >&2
      """
    And STDERR contains:
      """
      two
      """
    And the exit code is 0