Merge pull request #2601 from open-sausages/pulls/4/fix-symfony-yml

BUG Escape % to work with Symhony 4
This commit is contained in:
Steve Boyd 2020-10-21 09:18:42 +13:00 committed by GitHub
commit c56cf0686c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@ default:
suites: suites:
cms: cms:
paths: paths:
- '%paths.modules.cms%/tests/behat/features' - "%paths.modules.cms%/tests/behat/features"
contexts: contexts:
- SilverStripe\Framework\Tests\Behaviour\FeatureContext - SilverStripe\Framework\Tests\Behaviour\FeatureContext
- SilverStripe\Framework\Tests\Behaviour\CmsFormsContext - SilverStripe\Framework\Tests\Behaviour\CmsFormsContext
@ -13,7 +13,7 @@ default:
- SilverStripe\CMS\Tests\Behaviour\ThemeContext - SilverStripe\CMS\Tests\Behaviour\ThemeContext
- SilverStripe\CMS\Tests\Behaviour\FixtureContext: - SilverStripe\CMS\Tests\Behaviour\FixtureContext:
# Note: double indent for args is intentional # Note: double indent for args is intentional
- '%paths.modules.cms%/tests/behat/features/files/' - "%paths.modules.cms%/tests/behat/features/files/"
extensions: extensions:
SilverStripe\BehatExtension\MinkExtension: SilverStripe\BehatExtension\MinkExtension:
@ -25,5 +25,5 @@ default:
browser_name: chrome browser_name: chrome
SilverStripe\BehatExtension\Extension: SilverStripe\BehatExtension\Extension:
screenshot_path: '%paths.base%/artifacts/screenshots' screenshot_path: "%paths.base%/artifacts/screenshots"
bootstrap_file: "tests/behat/serve-bootstrap.php" bootstrap_file: "tests/behat/serve-bootstrap.php"