Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 903 Bytes

File metadata and controls

30 lines (20 loc) · 903 Bytes

Behat parallel runner Build Status

What is it?

It is a simple launcher of behat tests, which allow:

  • to run each test in a separate process
  • to run several test in parallel

How to use

  • Put the executable file into the root of testable project (on the same level with vendor directory)
  • Run following command
$ bpr 2 -s my_suite

where bpr is the name of executable file, 2 is a number of threads and everything else can be any regular behat arguments.

The executable binary you can find on the releases page.

How to build

  • Clone the repository
  • Run following command
$ cd <clonned project root>
$ GOPATH=<clonned project root> go build -i "-ldflags=-linkmode internal" -o ./build/bpr github.com/mihard/behat-parallel-runner