Skip to content

Commit fe44f93

Browse files
Symfony 6.0.2
1 parent 3908e64 commit fe44f93

37 files changed

+327
-250
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ jobs:
5656

5757
- run: sudo chown -R $USER:$USER /home/runner/work/elasticsearch-admin/elasticsearch-admin
5858
- run: bin/console app:phpunit
59-
- run: bin/phpunit
59+
- run: bin/phpunit --filter Part1
60+
- run: bin/phpunit --filter Part2
61+
- run: bin/phpunit --filter Manager
62+
- run: bin/phpunit --filter Model
6063
- run: vendor/bin/phpstan analyse -l 6 src
6164
- run: vendor/bin/phpstan analyse -l 6 tests

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,7 @@ install:
3030

3131
script:
3232
- bin/console app:phpunit
33-
- bin/phpunit
33+
- bin/phpunit --filter Part1
34+
- bin/phpunit --filter Part2
35+
- bin/phpunit --filter Manager
36+
- bin/phpunit --filter Model

composer.lock

Lines changed: 213 additions & 212 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,5 +338,9 @@ You can run the application from a folder in an existing vhost (ie http://localh
338338
```
339339
vendor/bin/phpstan analyse -l 6 src
340340
vendor/bin/phpstan analyse -l 6 tests
341-
bin/console app:phpunit && bin/phpunit
341+
bin/console app:phpunit
342+
bin/phpunit --filter Part1
343+
bin/phpunit --filter Part2
344+
bin/phpunit --filter Manager
345+
bin/phpunit --filter Model
342346
```

tests/Controller/AppIndexDatabaseImportControllerTest.php renamed to tests/Controller/Part1/AppIndexDatabaseImportControllerTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22

3-
namespace App\Tests\Controller;
3+
namespace App\Tests\Controller\Part1;
4+
5+
use App\Tests\Controller\AbstractAppControllerTest;
46

57
/**
68
* @Route("/admin")

tests/Controller/AppNotificationsControllerTest.php renamed to tests/Controller/Part1/AppNotificationsControllerTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22

3-
namespace App\Tests\Controller;
3+
namespace App\Tests\Controller\Part1;
4+
5+
use App\Tests\Controller\AbstractAppControllerTest;
46

57
/**
68
* @Route("/admin")

tests/Controller/AppOfflineControllerTest.php renamed to tests/Controller/Part1/AppOfflineControllerTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22

3-
namespace App\Tests\Controller;
3+
namespace App\Tests\Controller\Part1;
4+
5+
use App\Tests\Controller\AbstractAppControllerTest;
46

57
/**
68
* @Route("/admin")

tests/Controller/AppRoleControllerTest.php renamed to tests/Controller/Part1/AppRoleControllerTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22

3-
namespace App\Tests\Controller;
3+
namespace App\Tests\Controller\Part1;
4+
5+
use App\Tests\Controller\AbstractAppControllerTest;
46

57
/**
68
* @Route("/admin")

tests/Controller/AppSubscriptionsControllerTest.php renamed to tests/Controller/Part1/AppSubscriptionsControllerTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22

3-
namespace App\Tests\Controller;
3+
namespace App\Tests\Controller\Part1;
4+
5+
use App\Tests\Controller\AbstractAppControllerTest;
46

57
/**
68
* @Route("/admin")

tests/Controller/AppUninstallControllerTest.php renamed to tests/Controller/Part1/AppUninstallControllerTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php
22

3-
namespace App\Tests\Controller;
3+
namespace App\Tests\Controller\Part1;
4+
5+
use App\Tests\Controller\AbstractAppControllerTest;
46

57
/**
68
* @Route("/admin")

0 commit comments

Comments
 (0)