This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "3" | |
services: | |
mysql: | |
image: mysql/mysql-server:5.7 | |
restart: always | |
ports: | |
- 33060:3306 | |
environment: | |
- MYSQL_RANDOM_ROOT_PASSWORD=1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Codeception Test Suite Configuration | |
# | |
# Suite for acceptance tests. | |
# Perform tests in browser using the WebDriver or PhpBrowser. | |
# If you need both WebDriver and PHPBrowser tests - create a separate suite. | |
actor: AcceptanceTester | |
modules: | |
enabled: | |
- PhpBrowser |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
paths: | |
tests: tests | |
output: tests/_output | |
data: tests/_data | |
support: tests/_support | |
envs: tests/_envs | |
actor_suffix: Tester | |
extensions: | |
enabled: | |
- Codeception\Extension\RunFailed |