tonicforhealth/behat-parallel-scenario

There is no license information available for the latest version (v1.0.7.2) of this package.

Behat parallel scenario

v1.0.7.2 2016-03-03 19:14 UTC

This package is not auto-updated.

Last update: 2024-04-17 16:55:06 UTC


README

Install via composer

$ composer require tonicforhealth/behat-parallel-scenario

Config

Load extenstion into config:

default:
    extensions:
        Tonic\Behat\ParallelScenarioExtension: ~

or

default:
    extensions:
        Tonic\Behat\ParallelScenarioExtension:
            profiles:
                - profile_name_for_worker_1
                - profile_name_for_worker_2
                - profile_name_for_worker_3
            options:
                skip:
                    - any-behat-option-for-skiping-in-worker

Mark scenarios with tags

  • run scenario in parallel
@parallel-scenario
  • wait all parallel scenarios are done
@parallel-wait
  • run examples in parallel
@parallel-examples

Run

$ bin/behat --parallel-process 2

When parameter is absent or equal to 1 then test will be run in usual mode

Code Climate