Skip to content

Commit 5aeb717

Browse files
authored
adding coverage back (#1542)
1 parent 5ce8c7e commit 5aeb717

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.claude/settings.local.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@
2626
"Bash(cat:*)",
2727
"Bash(lsof:*)",
2828
"Bash(git stash:*)",
29-
"Bash(git checkout:*)"
29+
"Bash(git checkout:*)",
30+
"Bash(gh run list:*)",
31+
"Bash(gh run view:*)"
3032
],
3133
"deny": [],
3234
"ask": []

.github/actions/test-coverage/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
shell: bash
1313

1414
- name: Send coverage data to codecov.io
15-
if: matrix.php == '8.1'
15+
if: matrix.php == '8.2'
1616
uses: codecov/codecov-action@v5.5.2
1717
with:
1818
files: src/coverage.xml

src/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ e2e-serve:
1313

1414
.PHONY: e2e-test
1515
e2e-test:
16+
ENVIRONMENT=test php artisan migrate --force
17+
ENVIRONMENT=test php artisan db:seed --class=TestEnvironmentSeeder --force
1618
BASE_URL=http://localhost:8001 npx playwright test
1719

1820
.PHONY: e2e-test-ui
1921
e2e-test-ui:
22+
ENVIRONMENT=test php artisan migrate --force
23+
ENVIRONMENT=test php artisan db:seed --class=TestEnvironmentSeeder --force
2024
BASE_URL=http://localhost:8001 npx playwright test --ui
2125

2226
.PHONY: lint

0 commit comments

Comments
 (0)