PHPackages                             bex/behat-skip-tests - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Testing &amp; Quality](/categories/testing)
4. /
5. bex/behat-skip-tests

ActiveLibrary[Testing &amp; Quality](/categories/testing)

bex/behat-skip-tests
====================

Extension for behat to enable skipping tests without excluding them from the output

1.2.0(8y ago)6377.6k↓33.1%[1 issues](https://github.com/tkotosz/behat-skip-tests/issues)MITPHPPHP &gt;=5.4

Since May 9Pushed 8y agoCompare

[ Source](https://github.com/tkotosz/behat-skip-tests)[ Packagist](https://packagist.org/packages/bex/behat-skip-tests)[ Docs](https://github.com/tkotosz/behat-skip-tests)[ RSS](/packages/bex-behat-skip-tests/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (5)Versions (4)Used By (0)

Behat-SkipTestsExtension
========================

[](#behat-skiptestsextension)

[![License](https://camo.githubusercontent.com/8685c591772760a040816519bfc8872a0c89fbbd88c9704478c9c6ce5ee78887/68747470733a2f2f706f7365722e707567782e6f72672f6265782f62656861742d736b69702d74657374732f6c6963656e7365)](https://packagist.org/packages/bex/behat-skip-tests)[![Latest Stable Version](https://camo.githubusercontent.com/f4ed627a4ae3575da3e2d1a779173ac954ff8a27de17575737f02729199c5325/68747470733a2f2f706f7365722e707567782e6f72672f6265782f62656861742d736b69702d74657374732f76657273696f6e)](https://packagist.org/packages/bex/behat-skip-tests)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/e03155dfede5b1bfb00dba2e8c2b68885efdb083e44aa1265daa3a2c04a0e672/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f746b6f746f737a2f62656861742d736b69702d74657374732f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/tkotosz/behat-skip-tests/?branch=master)[![Build Status](https://camo.githubusercontent.com/2318094e8086fc2f9c191129fe8e89ca3ca671cbf7fd148b1018287da9a8eeef/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f746b6f746f737a2f62656861742d736b69702d74657374732f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/tkotosz/behat-skip-tests/build-status/master)[![Build Status](https://camo.githubusercontent.com/ba73eea13e2ebca585032ca8ae66bdff389308f284212dba38d08435909b3848/68747470733a2f2f7472617669732d63692e6f72672f746b6f746f737a2f62656861742d736b69702d74657374732e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/tkotosz/behat-skip-tests)

Behat-SkipTestsExtension allows you to skip tests without excluding them from the output.

Installation
------------

[](#installation)

Install by adding to your `composer.json`:

```
composer require --dev bex/behat-skip-tests
```

Configuration
-------------

[](#configuration)

Enable the extension in `behat.yml` like this:

```
default:
  extensions:
    Bex\Behat\SkipTestsExtension: ~
```

You can disable the scenario skipping like this:

```
default:
  extensions:
    Bex\Behat\SkipTestsExtension:
      skip_scenarios: false
```

You can disable the feature skipping like this:

```
default:
  extensions:
    Bex\Behat\SkipTestsExtension:
      skip_features: false
```

You can configure the skip tags like this:

```
default:
  extensions:
    Bex\Behat\SkipTestsExtension:
      skip_tags: ['myawesometag'] # default: ['pending', 'skip']
```

Usage
-----

[](#usage)

Add a skip tag to any scenario to skip all steps within that scenario. By default you can use the `@pending` or `@skip` tags to skip a scenario, but you can configure your own skip tags as well (see configuration above).

See example in [this](https://github.com/tkotosz/behat-skip-tests/blob/master/features/scenario-skipping.feature) feature file.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance17

Infrequent updates — may be unmaintained

Popularity38

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity60

Established project with proven stability

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~5 days

Total

3

Last Release

2921d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6451ac5fdc814bfa3aec1b3cf746fdb3ccec68ccbbe3a6f30b3b6c9266b0cb79?d=identicon)[tkotosz](/maintainers/tkotosz)

---

Tags

BDDTDDBehat

### Embed Badge

![Health badge](/badges/bex-behat-skip-tests/health.svg)

```
[![Health](https://phpackages.com/badges/bex-behat-skip-tests/health.svg)](https://phpackages.com/packages/bex-behat-skip-tests)
```

###  Alternatives

[polishsymfonycommunity/symfony-mocker-container

Provides base Symfony dependency injection container enabling service mocking.

1468.0M237](/packages/polishsymfonycommunity-symfony-mocker-container)[bex/behat-extension-driver-locator

Driver locator tool for behat extensions

385.2M4](/packages/bex-behat-extension-driver-locator)[ciaranmcnulty/behat-stepthroughextension

Extension for behat to help debug failing scenarios

601.6M5](/packages/ciaranmcnulty-behat-stepthroughextension)[sensiolabs/behat-page-object-extension

Page object extension for Behat

1166.5M27](/packages/sensiolabs-behat-page-object-extension)[bex/behat-step-time-logger

Extension for behat to help find slow scenario steps by logging the step times

261.5M1](/packages/bex-behat-step-time-logger)[ezsystems/behat-screenshot-image-driver-cloudinary

Cloudinary image driver for bex/behat-screenshot behat extension

28992.5k16](/packages/ezsystems-behat-screenshot-image-driver-cloudinary)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
