Skip to content

Commit

Permalink
[phpstorm-stubs] run PhpDoc tests in a separate task
Browse files Browse the repository at this point in the history
  • Loading branch information
isfedorov committed Mar 24, 2023
1 parent 128d12d commit c25fde9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
- name: Composer Install
run: docker-compose -f docker-compose.yml run test_runner composer install

- name: Test PhpDoc
run: docker-compose -f docker-compose.yml run test_runner vendor/bin/phpunit --testsuite PhpDoc

- name: Test Stubs Map, Structure and Reflection
run: docker-compose -f docker-compose.yml run test_runner vendor/bin/phpunit --testsuite Structure

Expand Down
9 changes: 0 additions & 9 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,20 @@
<file>tests/BaseFunctionsTest.php</file>
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
</testsuite>
<testsuite name="PHP_7.0">
<file>tests/BaseClassesTest.php</file>
<file>tests/BaseConstantsTest.php</file>
<file>tests/BaseFunctionsTest.php</file>
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
</testsuite>
<testsuite name="PHP_7.1">
<file>tests/BaseClassesTest.php</file>
<file>tests/BaseConstantsTest.php</file>
<file>tests/BaseFunctionsTest.php</file>
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
<file>tests/StubsForbiddenTypeHintsTest.php</file>
</testsuite>
<testsuite name="PHP_7.2">
Expand All @@ -32,7 +29,6 @@
<file>tests/BaseFunctionsTest.php</file>
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
<file>tests/StubsForbiddenTypeHintsTest.php</file>
</testsuite>
<testsuite name="PHP_7.3">
Expand All @@ -41,7 +37,6 @@
<file>tests/BaseFunctionsTest.php</file>
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
<file>tests/StubsForbiddenTypeHintsTest.php</file>
</testsuite>
<testsuite name="PHP_7.4">
Expand All @@ -50,7 +45,6 @@
<file>tests/BaseFunctionsTest.php</file>
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
<file>tests/StubsForbiddenTypeHintsTest.php</file>
</testsuite>
<testsuite name="PHP_8.0">
Expand All @@ -60,7 +54,6 @@
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsParameterNamesTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
<file>tests/StubsTypeHintsTest.php</file>
<file>tests/StubsForbiddenTypeHintsTest.php</file>
</testsuite>
Expand All @@ -71,7 +64,6 @@
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsParameterNamesTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
<file>tests/StubsTypeHintsTest.php</file>
<file>tests/StubsForbiddenTypeHintsTest.php</file>
<file>tests/StubsPhp81Tests.php</file>
Expand All @@ -84,7 +76,6 @@
<file>tests/StubsMetaExpectedArgumentsTest.php</file>
<file>tests/StubsMetaInternalTagTest.php</file>
<file>tests/StubsParameterNamesTest.php</file>
<file>tests/StubsPhpDocTest.php</file>
<file>tests/StubsTypeHintsTest.php</file>
<file>tests/StubsForbiddenTypeHintsTest.php</file>
<file>tests/StubsPhp81Tests.php</file>
Expand Down

0 comments on commit c25fde9

Please sign in to comment.