Stop running tests on AppVeyor

Debugging tests on Windows is too much work
This commit is contained in:
Pierre Rudloff 2019-11-30 14:55:16 +01:00
parent 9b6639168d
commit 43e6f9b25d
2 changed files with 0 additions and 28 deletions

View file

@ -118,12 +118,6 @@ class ConfigTest extends BaseTest
*/
public function testSetOptionsWithoutUpdate()
{
if (getenv('APPVEYOR')) {
$this->markTestSkipped(
"This will fail on AppVeyor because it won't be able to find youtube-dl at the defaut path."
);
}
Config::setOptions(['appName' => 'foo'], false);
$config = Config::getInstance();
$this->assertEquals($config->appName, 'foo');