@@ -48,6 +48,7 @@ Feature: WordPress code scaffolding
4848 """
4949 And the return code should be 1
5050
51+ @require-wp-4.6
5152 Scenario : Scaffold a child theme and network enable it
5253 Given a WP multisite install
5354
@@ -309,6 +310,7 @@ Feature: WordPress code scaffolding
309310 Plugin 'hello-world' activated.
310311 """
311312
313+ @require-wp-4.6
312314 Scenario: Scaffold a plugin and network activate it
313315 Given a WP multisite install
314316 When I run `wp scaffold plugin hello-world --activate-network`
@@ -333,6 +335,7 @@ Feature: WordPress code scaffolding
333335 """
334336 And the return code should be 1
335337
338+ @require-php-5.6
336339 Scenario: Scaffold starter code for a theme
337340 Given a WP install
338341 Given I run `wp theme path`
@@ -347,6 +350,7 @@ Feature: WordPress code scaffolding
347350 And the {THEME_DIR}/starter-theme/style.css file should exist
348351 And the {THEME_DIR}/starter-theme/.editorconfig file should exist
349352
353+ @require-php-5.6
350354 Scenario: Scaffold starter code for a theme with sass
351355 Given a WP install
352356 Given I run `wp theme path`
@@ -360,6 +364,7 @@ Feature: WordPress code scaffolding
360364 """
361365 And the {THEME_DIR}/starter-theme/sass directory should exist
362366
367+ @require-php-5.6
363368 Scenario: Scaffold starter code for a WooCommerce theme
364369 Given a WP install
365370 Given I run `wp theme path`
@@ -374,6 +379,7 @@ Feature: WordPress code scaffolding
374379 And the {THEME_DIR}/starter-theme/woocommerce.css file should exist
375380 And the {THEME_DIR}/starter-theme/inc/woocommerce.php file should exist
376381
382+ @require-php-5.6
377383 Scenario: Scaffold starter code for a theme and activate it
378384 Given a WP install
379385 # Allow for warnings to be generated due to https://github.com/wp-cli/scaffold-command/issues/181
@@ -490,6 +496,7 @@ Feature: WordPress code scaffolding
490496 env: WP_VERSION=latest
491497 """
492498
499+ @require-php-5.6 @require-wp-4.6
493500 Scenario: Scaffold starter code for a theme and network enable it
494501 Given a WP multisite install
495502 # Allow for warnings to be generated due to https://github.com/wp-cli/scaffold-command/issues/181
@@ -499,6 +506,7 @@ Feature: WordPress code scaffolding
499506 Success: Network enabled the 'Starter-theme' theme.
500507 """
501508
509+ @require-php-5.6
502510 Scenario: Scaffold starter code for a theme, but can't unzip theme files
503511 Given a WP install
504512 And a misconfigured WP_CONTENT_DIR constant directory
0 commit comments