Remove Windows test config file

We don't have a Windows CI anymore
This commit is contained in:
Pierre Rudloff 2020-06-22 23:22:42 +02:00
parent f90a08e89c
commit 7a2c7b42fb
2 changed files with 1 additions and 20 deletions

View File

@ -1,13 +0,0 @@
---
convert: false
python: C:\Python36\python.exe
avconv: C:\ProgramData\chocolatey\bin\ffmpeg.exe
avconvVerbosity: fatal
phantomjsDir: C:\ProgramData\chocolatey\bin\
youtubedl: C:\Python36\Lib\site-packages\youtube_dl\__main__.py
params:
- --no-warnings
- --ignore-errors
- --flat-playlist
- --restrict-filenames
- --no-check-certificate

View File

@ -22,13 +22,7 @@ abstract class BaseTest extends TestCase
*/
protected function getConfigFile()
{
if (PHP_OS == 'WINNT') {
$configFile = 'config_test_windows.yml';
} else {
$configFile = 'config_test.yml';
}
return __DIR__ . '/../config/' . $configFile;
return __DIR__ . '/../config/config_test.yml';
}
/**