Skip to content

Commit 4afc61e

Browse files
committed
Fix
1 parent 59ba4a8 commit 4afc61e

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ jobs:
335335

336336
- name: "Tests"
337337
run: |
338-
git clone https://github.com/nikic/PHP-Parser.git tests/e2e/PHP-Parser && git -C tests/e2e/PHP-Parser checkout v3.1.5 && composer install --working-dir tests/e2e/PHP-Parser && vendor/bin/phpunit tests/e2e/ResultCacheEndToEndTest.php --group exec
338+
git clone https://github.com/nikic/PHP-Parser.git tests/e2e/PHP-Parser && git -C tests/e2e/PHP-Parser checkout v3.1.5 && composer install --working-dir tests/e2e/PHP-Parser && vendor/bin/phpunit tests/e2e/ResultCacheEndToEndTest.php
339339
340340
compiler-tests:
341341
name: "Compiler Tests"

phpunit.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
beStrictAboutTodoAnnotatedTests="true"
1313
verbose="false">
1414
<testsuite name="PHPStan">
15-
<directory suffix="Test.php">tests</directory>
15+
<directory suffix="Test.php">tests/PHPStan</directory>
1616
</testsuite>
1717

1818
<groups>

tests/e2e/ResultCacheEndToEndTest.php

-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
use function file_put_contents;
1212
use function str_replace;
1313

14-
/**
15-
* @group exec
16-
*/
1714
class ResultCacheEndToEndTest extends TestCase
1815
{
1916

0 commit comments

Comments
 (0)