ciaranmcnulty / versionbasedtestskipper
Skip Behat scenarios based on PHP version
Installs: 7 077
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: ^7.2 || ^8.0
- composer/semver: ^3.0
Requires (Dev)
- behat/behat: ^3.0
- phpspec/phpspec: ^6.0
- phpunit/phpunit: ^8.0 || ^9.0
This package is auto-updated.
Last update: 2024-10-19 00:15:54 UTC
README
A library for skipping tests based on PHP version in tags
The ultimate aim is to support multiple testing tools, for now just Behat is supported
Installation
composer require --dev ciaranmcnulty/versionbasedtestskipper
Using with Behat
Edit your behat.yml
:
default: extensions: Cjm\Behat\VersionBasedTestSkipperExtension: ~
Use composer-style constraints to tag your scenarios or features:
@php:~7.0.1 Scenario: will only run in PHP 7.0.1 or greater