diff --git a/.drone.star b/.drone.star index a0a3c965b930..aa72bb958283 100644 --- a/.drone.star +++ b/.drone.star @@ -130,6 +130,41 @@ config = { "ls -l /var/cache/samba", ], }, + "external-windows": { + "phpVersions": [ + DEFAULT_PHP_VERSION, + ], + "databases": [ + "sqlite", + ], + "externalTypes": [ + "windows", + ], + "coverage": True, + "extraEnvironment": { + "SMB_WINDOWS_HOST": { + "from_secret": "SMB_WINDOWS_HOST", + }, + "SMB_WINDOWS_USERNAME": { + "from_secret": "SMB_WINDOWS_USERNAME", + }, + "SMB_WINDOWS_PWD": { + "from_secret": "SMB_WINDOWS_PWD", + }, + "SMB_WINDOWS_DOMAIN": { + "from_secret": "SMB_WINDOWS_DOMAIN", + }, + "SMB_WINDOWS_SHARE_NAME": { + "from_secret": "SMB_WINDOWS_SHARE_NAME", + }, + }, + "extraCommandsBeforeTestRun": [ + "ls -l /var/cache", + "mkdir /var/cache/samba", + "ls -l /var/cache", + "ls -l /var/cache/samba", + ], + }, "external-other": { "phpVersions": [ DEFAULT_PHP_VERSION, diff --git a/tests/lib/Files/ViewTest.php b/tests/lib/Files/ViewTest.php index 61b15a2dd5f6..da33a6fb8bf8 100644 --- a/tests/lib/Files/ViewTest.php +++ b/tests/lib/Files/ViewTest.php @@ -2739,7 +2739,7 @@ public function providesNonShareFolder() { public function testDeleteNonShareFolder($shareFolder, $deleteFolder) { /** * Using overwriteService in this method instead of setUp, because there - * are other methods in the test's which might get affected if we use it + * are other methods in the tests which might get affected if we use it * in setUp. */ $this->overwriteService('AllConfig', $this->config);