File tree Expand file tree Collapse file tree 5 files changed +186
-184
lines changed
Expand file tree Collapse file tree 5 files changed +186
-184
lines changed Original file line number Diff line number Diff line change 1818 workflow_dispatch :
1919
2020concurrency :
21- group : ${{ github.workflow }}-${{ github.ref }}
21+ group : ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
2222 cancel-in-progress : true
2323
2424jobs :
5454 composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
5555 - name : Clear Pest cache
5656 run : rm -rf vendor/pestphp/pest/.temp/test-results || true
57+ - name : Ensure test directories exist
58+ run : |
59+ mkdir -p tests/Feature tests/Unit
5760 - name : Run tests
5861 run : composer test
Original file line number Diff line number Diff line change 1111 <testsuite name =" Feature" >
1212 <directory >tests/Feature</directory >
1313 </testsuite >
14- <testsuite name =" Public" >
15- <directory >tests/Public</directory >
16- </testsuite >
1714 </testsuites >
1815 <source >
1916 <include >
Original file line number Diff line number Diff line change 33use Tapp \FilamentHelp \Tests \TestCase ;
44
55uses (TestCase::class)->in ('Feature ' , 'Unit ' );
6+
7+ // Explicitly exclude any non-existent directories that Pest might try to discover
8+ // This prevents errors when Pest tries to discover deleted test directories
You can’t perform that action at this time.
0 commit comments