concurrent_shell_commands 0.4.1

runs commands concurrently and display their name and output, with configurable filtering of output
Documentation
Feature: pass the received exit code to the parent process

  Scenario: exit code 0
    When I run "conc --show=all 'exit 0'"
    Then STDOUT contains:
      """
      exit 0
      """
    And the exit code is 0

  Scenario: exit code 1
    When I run "conc --show=all 'exit 1'"
    Then STDOUT contains:
      """
      exit 1
      """
    And the exit code is 1

  Scenario: exit code 2
    When I run "conc --show=all 'exit 2'"
    Then STDOUT contains:
      """
      exit 2
      """
    And the exit code is 2

  Scenario: exit code 255
    When I run "conc --show=all 'exit 255'"
    Then STDOUT contains:
      """
      exit 255
      """
    And the exit code is 255