Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
kubawerlos committed Aug 14, 2024
1 parent e7a331a commit 553a799
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/IntegrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace Tests;

use PHPUnit\Framework\TestCase;
use Symfony\Component\Filesystem\Exception\IOException;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Process\Process;

Expand All @@ -32,7 +33,10 @@ public static function setUpBeforeClass(): void
public static function tearDownAfterClass(): void
{
$filesystem = new Filesystem();
$filesystem->remove(self::TEST_DIR);
try { // Workaround for running on Windows
$filesystem->remove(self::TEST_DIR);
} catch (IOException $exception) {
}
}

/**
Expand Down

0 comments on commit 553a799

Please sign in to comment.