Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .drone.star
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/Files/ViewTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down