-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🎨 Improve slicer to phpunit9 #10
Conversation
1405006
to
8a29e08
Compare
Unfortunately I cannot confirm this to work? I had to hack around to get this installed in my project as I'm on PHPUnit 9.5, so I added a repository to my "repositories": [
{
"type": "package",
"package": {
"name": "wizaplace/phpunit-slicer",
"type": "library",
"version": "1234",
"dist": {
"url": "https://codeload.github.com/wizaplace/phpunit-slicer/legacy.zip/5b13677645c81689a5f5dd31ac88fa3240b741c7",
"type": "zip"
},
"autoload": {
"psr-4": {
"Wizaplace\\PHPUnit\\Slicer\\": "src/"
}
},
"bin": [
"phpunit-slicer"
]
}
}
], I.e. the point is to not have a I've then installed it via Anyhow, I then tried this in my project:
or
😢 Regular phpunit works:
There's not much more "magic" going on and a previous hack version of phpunit-slicer works too (i.e. the copypasta approach from #8 Any ideas? |
Here's the <?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
cacheResult="false"
failOnWarning="true"
>
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">app/</directory>
</include>
</coverage>
</phpunit> And here the <?php declare(strict_types = 1);
// Always ensure the cached bootstrap files are removed before running tests
// Especially important for auto-discover installed packages
// when switching branches
foreach (glob(__DIR__ . '/../bootstrap/cache/*.php') as $filename) {
unlink($filename);
}
require __DIR__ . '/../vendor/autoload.php'; |
Hey Guys ! fix #7
You can no longer extend the TestRunner. The slice is done before launching the runner
Management of the CI in github action, just activate the option