Skip to content

Commit 65cf4ae

Browse files
committed
refactor: file paths
1 parent df12ac6 commit 65cf4ae

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,4 @@ jobs:
100100
run: php ./tempest discovery:status
101101

102102
- name: Execute tests
103-
run: php -d"error_reporting = E_ALL & ~E_DEPRECATED" -dmemory_limit=1G vendor/bin/phpunit --coverage-clover build/reports/clover.xml
104-
105-
# Only upload coverage once.
106-
- if: matrix.php == '8.4' && matrix.database == 'sqlite' && matrix.os == 'ubuntu-latest' && matrix.stability == 'prefer-stable'
107-
name: Coveralls
108-
uses: coverallsapp/github-action@v2
109-
continue-on-error: true
110-
with:
111-
github-token: '${{ secrets.GITHUB_TOKEN }}'
112-
file: build/reports/clover.xml
103+
run: php -d"error_reporting = E_ALL & ~E_DEPRECATED" -dmemory_limit=1G vendor/bin/phpunit

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@
191191
}
192192
},
193193
"scripts": {
194-
"phpunit": "vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
194+
"phpunit": "@php -d memory_limit=2G vendor/bin/phpunit --display-warnings --display-skipped --display-deprecations --display-errors --display-notices",
195195
"coverage": "vendor/bin/phpunit --coverage-html build/reports/html --coverage-clover build/reports/clover.xml",
196196
"mago:fmt": "vendor/bin/mago fmt && vendor/bin/mago lint --fix --potentially-unsafe --fmt",
197197
"mago:lint": "vendor/bin/mago lint --minimum-level=note",
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

phpstan.neon.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ parameters:
2222
identifier: argument.named
2323
-
2424
message: '#.*exec*#'
25-
path: src/Tempest/Console/src/Terminal/Terminal.php
25+
path: packages/console/src/Terminal/Terminal.php
2626
-
2727
message: '#.*uninitialized readonly property \$console*#'
2828
-

0 commit comments

Comments
 (0)