All Projects → camiloribeiro → Cucumber Gradle Parallel

camiloribeiro / Cucumber Gradle Parallel

Example of Gradle Running Cucumber Features in Parallel

Labels

Projects that are alternatives of or similar to Cucumber Gradle Parallel

gherkin
Pure Rust implementation of Gherkin language (`.feature` file) for Cucumber testing framework.
Stars: ✭ 41 (-2.38%)
Mutual labels:  gherkin
Symfonyextension
🎼 Extension integrating Behat with Symfony.
Stars: ✭ 376 (+795.24%)
Mutual labels:  gherkin
Crudecumber
A manual Cucumber runner RubyGem
Stars: ✭ 9 (-78.57%)
Mutual labels:  gherkin
bat
Gherkin based DSL for testing HTTP APIs via Cucumber.JS
Stars: ✭ 30 (-28.57%)
Mutual labels:  gherkin
Middleman Blog
Middleman : Blog Engine Extension
Stars: ✭ 317 (+654.76%)
Mutual labels:  gherkin
Karate
Test Automation Made Simple
Stars: ✭ 5,497 (+12988.1%)
Mutual labels:  gherkin
cucumber-react
React components for Cucumber
Stars: ✭ 15 (-64.29%)
Mutual labels:  gherkin
Jrg
Juno Reverse Geocoder
Stars: ✭ 21 (-50%)
Mutual labels:  gherkin
Behat
BDD in PHP
Stars: ✭ 3,696 (+8700%)
Mutual labels:  gherkin
Cuke linter
A linting tool for Cucumber
Stars: ✭ 24 (-42.86%)
Mutual labels:  gherkin
behave-restful
BDD Framework to Test REST Services and APIs
Stars: ✭ 47 (+11.9%)
Mutual labels:  gherkin
Jekyll Responsive Image
An unopinionated Jekyll plugin for generating and using responsive images
Stars: ✭ 289 (+588.1%)
Mutual labels:  gherkin
Opencypher
Specification of the Cypher property graph query language
Stars: ✭ 534 (+1171.43%)
Mutual labels:  gherkin
flutter gherkin
A Gherkin parsers and runner for Dart and Flutter which is very similar to cucumber
Stars: ✭ 160 (+280.95%)
Mutual labels:  gherkin
Pantheon Wordpress Upstream Tests
Tests behavior of WordPress Core upstreams for Pantheon. Also within test suites of contrib plugins
Stars: ✭ 12 (-71.43%)
Mutual labels:  gherkin
sonar-gherkin-plugin
SonarQube Cucumber Gherkin Analyzer
Stars: ✭ 33 (-21.43%)
Mutual labels:  gherkin
Contexts
Behat extension with most custom helper steps
Stars: ✭ 387 (+821.43%)
Mutual labels:  gherkin
Psalm Plugin Phpunit
A PHPUnit plugin for Psalm
Stars: ✭ 42 (+0%)
Mutual labels:  gherkin
Jekyll Scholar
jekyll extensions for the blogging scholar
Stars: ✭ 872 (+1976.19%)
Mutual labels:  gherkin
Gherkin
Gherkin parser, written in PHP 5.3+ for Behat project
Stars: ✭ 924 (+2100%)
Mutual labels:  gherkin

Cucumber Gradle Parallel Example

Build Status

alt tag

This is just an example of cucumber jvm running several features in parallel on gradle.

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code.

In this example you will find:

- 9 Feature files running simultaneously in different threads and different jvms
- A cucumber report being generated on top of all results at the end of the test

The current example run over 47 seconds of testing in a bit more than 5 seconds. It also generates a report in another couple of seconds. The features used in this exercise are just features with bare sleep inside its steps. It is just to show that it is actyally running simultaneusly.

You can check other implementations that also try to run in parallel here:

- https://github.com/theaberrant/gradle-concurrent 
- https://github.com/theaberrant/cucumber-jvm-groovy-rest-example

The report used is:

- http://www.masterthought.net/section/cucumber-reporting

Besides the basic configuration, it is not very useful :)

Try it

Make sure you have java installed and gradle https://gradle.org/

Clone the repository:

$ git clone [email protected]:camiloribeiro/cucumber-gradle-parallel.git

Run in sequence, the usual way:

$ gradle clean build runInSequence

Check the total time in the output. Now, run it in parallel:

$ gradle clean build runInParallel

Check the report in the output. Add a file:// + output in your browser, example file:///Users/camilo/cucumber-gradle-parallel/build/reports/cucumber/cucumber-html-reports/overview-features.html

Have fun.

LICENSE

Copyright 2015 - 2017 Camilo Ribeiro [email protected]

This file is part of Cucumber-gradle.parallel.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].