Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/symfony.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
branches:
- '8.1'
- '8.1-php-config'
pull_request:
branches:
- '8.1'
- '8.1-php-config'

env:
APP_ENV: test
Expand Down
21 changes: 21 additions & 0 deletions codeception.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

declare(strict_types=1);

use Codeception\Config\GlobalConfig;
use Codeception\Extension\RunFailed;

return GlobalConfig::create()
->namespace('App\Tests')
->supportNamespace('Support')
->paths(
tests: 'tests',
output: 'tests/_output',
data: 'tests/Support/Data',
support: 'tests/Support',
envs: 'tests/_envs',
)
->actorSuffix('Tester')
->extension(RunFailed::class)
->params('.env', '.env.test')
->settings(shuffle: true, colors: true, reportUselessTests: true);
19 changes: 0 additions & 19 deletions codeception.yml

This file was deleted.

8 changes: 7 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
"description": "Codeception Symfony Module tests",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/Codeception/Codeception.git"
}
],
"authors": [
{
"name": "Gustavo Nieves",
Expand Down Expand Up @@ -31,7 +37,7 @@
"symfony/yaml": "8.1.*"
},
"require-dev": {
"codeception/codeception": "^5.3",
"codeception/codeception": "dev-php_config as 5.3.x-dev",
"codeception/module-asserts": "^3.2",
"codeception/module-doctrine": "^3.3",
"codeception/module-symfony": "^3.8 | *@dev",
Expand Down
Loading