Skip to content

Commit

Permalink
Disabled failing #test on GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshyPHP committed Aug 18, 2024
1 parent bc9958e commit f32495f
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions tests/Plugins/MediaEmbed/ParserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1133,6 +1133,10 @@ function ($configurator)
[],
function ($configurator)
{
if (isset($_SERVER['GITHUB_RUN_ID']))
{
$this->markTestSkipped('YouTube hates GitHub actions');
}
$configurator->registeredVars['cacheDir'] = __DIR__ . '/../../.cache';
$configurator->MediaEmbed->add('youtube');
}
Expand Down Expand Up @@ -1248,6 +1252,10 @@ function ($configurator)
[],
function ($configurator)
{
if (isset($_SERVER['GITHUB_RUN_ID']))
{
$this->markTestSkipped('YouTube hates GitHub actions');
}
$configurator->registeredVars['cacheDir'] = __DIR__ . '/../../.cache';
$configurator->MediaEmbed->add('youtube');
}
Expand Down

0 comments on commit f32495f

Please sign in to comment.