We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f0167 commit 3248fa4Copy full SHA for 3248fa4
.github/workflows/phpstan.yml
@@ -68,4 +68,4 @@ jobs:
68
key: "phpstan-result-cache-${{ github.run_id }}"
69
70
- name: Run PHPUnit tests
71
- run: vendor/bin/phpunit --configuration=phpunit.xml.dist --testdox --colors=always
+ run: php -d zend.assertions=1 vendor/bin/phpunit --configuration=phpunit.xml.dist --testdox --colors=always
phpunit.xml.dist
@@ -12,13 +12,6 @@
12
timeoutForMediumTests="10"
13
timeoutForLargeTests="60"
14
>
15
- <php>
16
- <!-- NOTE: アサーションを有効化(CI環境用) -->
17
- <ini name="assert.active" value="1"/>
18
- <ini name="assert.exception" value="1"/>
19
- <ini name="zend.assertions" value="1"/>
20
- </php>
21
-
22
<testsuites>
23
<testsuite name="Unit">
24
<directory suffix="Test.php">tests/Unit</directory>
0 commit comments